/* ============================================================
   PRO MAINTENANCE SERVICES | Nassau, The Bahamas
   Built by Baha Connect | bahaconnect.com
   Fonts: Oswald (display) + Work Sans (body)
   ============================================================ */

:root {
  --navy: #0B1F35;
  --navy-2: #10294a;
  --navy-3: #16345c;
  --blue: #007BFF;
  --blue-dark: #0063cc;
  --orange: #FF7A00;
  --orange-dark: #e06a00;
  --white: #FFFFFF;
  --gray: #F5F7FA;
  --gray-2: #E4E9F0;
  --ink: #16202e;
  --ink-2: #4a5a6e;
  --ink-3: #7b8a9c;
  --wa: #25D366;
  --wa-dark: #1eb457;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.6rem;
  --text-5xl: 3.4rem;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius: 10px;
  --radius-lg: 16px;

  --shadow-xs: 0 1px 2px rgba(11,31,53,0.08);
  --shadow-sm: 0 2px 6px rgba(11,31,53,0.10);
  --shadow-md: 0 6px 18px rgba(11,31,53,0.14);
  --shadow-lg: 0 14px 34px rgba(11,31,53,0.20);
  --shadow-xl: 0 24px 56px rgba(11,31,53,0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
ul { list-style: none; }
p { max-width: 65ch; }

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.12;
  color: var(--navy);
}
h1 { font-size: var(--text-4xl); font-weight: 700; }
h2 { font-size: var(--text-3xl); font-weight: 600; }
h3 { font-size: var(--text-xl); font-weight: 600; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 var(--space-5); }
section { padding: var(--space-8) 0; }

.kicker {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  display: block;
  margin-bottom: var(--space-3);
}
.section-head { margin-bottom: var(--space-6); }
.section-head p { color: var(--ink-2); margin-top: var(--space-3); }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); color: var(--white); }
.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { background: var(--wa-dark); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-3); color: var(--white); }

/* ---------- Header / Nav ---------- */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); }
.topbar a { color: var(--white); font-weight: 500; }
.topbar a:hover { color: var(--orange); }
.topbar .tb-note { color: #9fb2c8; }
@media (max-width: 700px) { .topbar .tb-note { display: none; } }

header.site {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.navwrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.brand-name { line-height: 1.1; }
.brand-name strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  letter-spacing: 0.03em;
}
.brand-name span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-3);
}

nav.main { display: flex; align-items: center; gap: var(--space-5); }
nav.main > ul { display: flex; gap: var(--space-5); align-items: center; }
nav.main a.navlink {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: var(--space-2) 0;
}
nav.main a.navlink::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.22s ease;
}
nav.main a.navlink:hover::after, nav.main a.navlink.active::after { width: 100%; }
nav.main a.navlink.active { color: var(--blue); }

.has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: -16px;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: 8px;
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 500;
}
.dropdown a:hover { background: var(--gray); color: var(--blue); }

.nav-cta { display: inline-flex; }
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
}
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--navy);
  padding: var(--space-4) 0 var(--space-6);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mm-sub { font-size: var(--text-base); padding-left: var(--space-7); color: #b7c6d8; }

@media (max-width: 980px) {
  nav.main > ul, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,31,53,0.94) 0%, rgba(11,31,53,0.78) 45%, rgba(11,31,53,0.45) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); padding: var(--space-9) 0; }
.hero-content .kicker { color: var(--orange); }
.hero h1 {
  color: var(--white);
  font-size: var(--text-5xl);
  font-weight: 700;
  max-width: 18ch;
  margin-bottom: var(--space-4);
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p.lead { font-size: var(--text-lg); color: #cfdcec; max-width: 52ch; margin-bottom: var(--space-6); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-top: var(--space-7); }
.hero-badge { display: flex; align-items: center; gap: var(--space-3); color: #cfdcec; font-size: var(--text-sm); font-weight: 500; }
.hero-badge svg { flex: 0 0 auto; }
@media (max-width: 700px) {
  .hero h1 { font-size: var(--text-3xl); }
  .hero { min-height: 86vh; }
}

/* Sub-page hero */
.page-hero {
  position: relative;
  background: linear-gradient(115deg, var(--navy) 0%, var(--navy-3) 60%, #1d4a80 100%);
  color: var(--white);
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,123,255,0.35) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p { color: #cfdcec; margin-top: var(--space-3); position: relative; z-index: 1; }
.crumbs { position: relative; z-index: 1; font-size: var(--text-sm); color: #9fb2c8; margin-bottom: var(--space-4); text-transform: uppercase; letter-spacing: 0.1em; }
.crumbs a { color: var(--orange); }

/* ---------- Placeholder imagery ---------- */
/* Replace: give the div a background-image inline or swap for an <img>. */
.ph {
  position: relative;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 55%, #24568c 100%);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: rgba(255,255,255,0.85);
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 18px);
}
.ph .ph-label {
  position: relative;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  padding: var(--space-3);
}
.ph .ph-icon { position: relative; margin-bottom: var(--space-2); opacity: 0.9; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: var(--space-5); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,123,255,0.35); }
.card h3 { margin: var(--space-4) 0 var(--space-2); }
.card p { color: var(--ink-2); font-size: var(--text-sm); }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}
.card .card-link:hover { color: var(--orange-dark); }

.icon-tile {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,123,255,0.12), rgba(0,123,255,0.05));
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.card:hover .icon-tile { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); }
.icon-tile svg { transition: transform 0.25s ease; }
.card:hover .icon-tile svg { transform: scale(1.1); }

.band { background: var(--gray); }
.band-navy { background: var(--navy); color: var(--white); }
.band-navy h2, .band-navy h3 { color: var(--white); }
.band-navy p { color: #cfdcec; }

/* ---------- Why choose us ---------- */
.why-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.why-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--orange);
  line-height: 1;
  flex: 0 0 auto;
  min-width: 54px;
}
.why-item h3 { font-size: var(--text-lg); margin-bottom: var(--space-1); }
.why-item p { font-size: var(--text-sm); color: var(--ink-2); }
.band-navy .why-item p { color: #b7c6d8; }
.band-navy .why-item h3 { color: var(--white); }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); text-align: center; }
.stat b { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 700; color: var(--orange); display: block; line-height: 1; }
.stat span { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.1em; color: #9fb2c8; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quote .stars { color: var(--orange); letter-spacing: 3px; font-size: var(--text-lg); }
.quote p { color: var(--ink-2); margin: var(--space-3) 0 var(--space-4); font-size: var(--text-sm); }
.quote .who { font-weight: 600; color: var(--navy); font-size: var(--text-sm); }
.quote .who span { display: block; font-weight: 400; color: var(--ink-3); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Emergency band ---------- */
.emergency-band {
  background: linear-gradient(110deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: var(--space-7) 0;
}
.emergency-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-5); }
.emergency-band h2 { color: var(--white); margin-bottom: var(--space-1); }
.emergency-band p { color: rgba(255,255,255,0.9); }
.emergency-band .btn-navy:hover { background: var(--navy-2); }

/* ---------- Forms ---------- */
form.pm-form { display: grid; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
label { font-size: var(--text-sm); font-weight: 600; color: var(--navy); display: block; margin-bottom: var(--space-1); }
input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: 12px 14px;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: var(--text-xs); color: var(--ink-3); }
.form-status { font-weight: 600; font-size: var(--text-sm); min-height: 1.2em; }
.form-status.ok { color: #1a8f4d; }
.form-status.err { color: #c62828; }

/* ---------- Projects / gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-6); }
.filter-btn {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-2);
  background: var(--white);
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: 1fr; } }
.gal-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease; }
.gal-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gal-item.hide { display: none; }
.gal-item .ph { min-height: 260px; border-radius: 0; }
.gal-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(11,31,53,0.92));
  color: var(--white);
  padding: var(--space-6) var(--space-4) var(--space-4);
}
.gal-cap b { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.gal-cap span { font-size: var(--text-xs); color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em; }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
details.faq:hover { box-shadow: var(--shadow-sm); }
details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--orange);
  line-height: 1;
  transition: transform 0.25s ease;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .faq-body { padding: 0 var(--space-5) var(--space-4); color: var(--ink-2); font-size: var(--text-sm); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: var(--white); border-radius: var(--radius-lg); padding: var(--space-6); border-top: 4px solid var(--blue); box-shadow: var(--shadow-xs); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue);
  display: block;
  margin-bottom: var(--space-3);
  line-height: 1;
}
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--ink-2); }

/* ---------- Checklist ---------- */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3) var(--space-6); }
@media (max-width: 640px) { .check-list { grid-template-columns: 1fr; } }
.check-list li { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--ink-2); font-size: var(--text-sm); }
.check-list li::before {
  content: '';
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.4-4.2-4.2 1.7-1.7 2.5 2.5 5.2-5.2 1.7 1.7-6.9 6.9z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.4-4.2-4.2 1.7-1.7 2.5 2.5 5.2-5.2 1.7 1.7-6.9 6.9z'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}

/* ---------- Two-column feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split .ph { min-height: 340px; }

/* ---------- Brands strip ---------- */
.brands { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4); }
@media (max-width: 900px) { .brands { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .brands { grid-template-columns: repeat(2, 1fr); } }
.brand-tile {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  transition: all 0.2s ease;
}
.brand-tile:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.area-chip {
  background: var(--white);
  border: 1.5px solid var(--gray-2);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.2s ease;
}
.area-chip:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ---------- Contact ---------- */
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-2); }
.contact-line { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-3) 0; border-bottom: 1px solid var(--gray); }
.contact-line:last-child { border-bottom: none; }
.contact-line .icon-tile { width: 44px; height: 44px; flex: 0 0 auto; }
.contact-line b { display: block; color: var(--navy); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-line a, .contact-line span { color: var(--ink-2); font-size: var(--text-base); }
.contact-line a:hover { color: var(--blue); }
.map-ph { min-height: 320px; border-radius: var(--radius-lg); }
.hours { width: 100%; font-size: var(--text-sm); border-collapse: collapse; }
.hours td { padding: var(--space-2) 0; border-bottom: 1px solid var(--gray); color: var(--ink-2); }
.hours td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.hours tr.today td { color: var(--orange); }

/* ---------- Parallax band ---------- */
.parallax {
  position: relative;
  background: linear-gradient(rgba(11,31,53,0.85), rgba(11,31,53,0.85)), var(--navy-2);
  background-attachment: fixed, scroll;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
@media (max-width: 768px) { .parallax { background-attachment: scroll; } }

/* ---------- Footer ---------- */
footer.site {
  background: var(--navy);
  color: #b7c6d8;
  padding: var(--space-8) 0 var(--space-5);
  font-size: var(--text-sm);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-6); margin-bottom: var(--space-7); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
footer.site h4 {
  font-family: var(--font-display);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
footer.site a { color: #b7c6d8; }
footer.site a:hover { color: var(--orange); }
footer.site li { margin-bottom: var(--space-2); }
.foot-brand p { margin-top: var(--space-3); color: #8fa3ba; }
.foot-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.foot-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.2s ease;
}
.foot-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  color: #8fa3ba;
  font-size: var(--text-xs);
}
.foot-bottom a { color: var(--orange); }

/* ---------- Floating buttons ---------- */
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-btn:hover { transform: translateY(-4px) scale(1.06); color: var(--white); box-shadow: var(--shadow-xl); }
.float-call { background: var(--blue); }
.float-wa { background: var(--wa); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), var(--shadow-lg); }
}
.float-wa { animation: pulse-ring 2.6s infinite; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-group > * { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-group.visible > * { opacity: 1; transform: translateY(0); }
.reveal-group.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-group.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-group.visible > *:nth-child(8) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Utility ---------- */
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-4 { margin-bottom: var(--space-4); }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--orange); color: var(--white);
  padding: var(--space-3) var(--space-4);
  z-index: 1000;
}
.skip-link:focus { left: 0; }
