/* ==========================================================================
   Fresh Water Systems — Design System
   ========================================================================== */

:root {
  --blue: #0e60ba;
  --blue-dark: #0a4a91;
  --blue-deep: #083b73;
  --orange: #f55c07;
  --orange-dark: #d94e03;
  --navy: #14283f;
  --white: #ffffff;
  --ice: #eef5fc;
  --ice-2: #dfeefb;
  --gray-900: #1c2733;
  --gray-700: #46545f;
  --gray-500: #6d7a86;
  --gray-300: #c9d3db;
  --gray-100: #f4f7fa;

  --font-display: "Fredoka", "Poppins", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(20, 40, 63, 0.08);
  --shadow-md: 0 12px 30px rgba(20, 40, 63, 0.12);
  --shadow-lg: 0 24px 60px rgba(20, 40, 63, 0.18);

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 96px 0; }
@media (max-width: 768px) { .section-pad { padding: 64px 0; } }

.bg-ice { background: var(--ice); }
.bg-navy { background: var(--navy); color: var(--ice); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-blue { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); color: var(--white); }
.bg-blue h2, .bg-blue h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  display: inline-block;
}
.bg-blue .eyebrow, .bg-navy .eyebrow { color: #ffb385; }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--gray-500); font-size: 1.05rem; margin-top: 12px; }
.bg-blue .section-head p, .bg-navy .section-head p { color: #c9d9ec; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 8px 20px rgba(245, 92, 7, 0.35); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(245, 92, 7, 0.4); }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 8px 20px rgba(14, 96, 186, 0.35); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.bg-blue .btn-outline, .bg-navy .btn-outline,
.hero .btn-outline, .page-hero .btn-outline { color: var(--white); }
.bg-blue .btn-outline:hover, .bg-navy .btn-outline:hover,
.hero .btn-outline:hover, .page-hero .btn-outline:hover { background: var(--white); color: var(--blue-deep); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--blue-deep); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-block { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 58px; width: auto; }
.brand-text { display: none; font-family: var(--font-display); color: var(--navy); font-weight: 700; line-height: 1.1; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); border-color: var(--orange); }
.main-nav .btn, .main-nav .btn:hover { padding: 16px 30px; border-bottom: none; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}
.header-phone svg { width: 20px; height: 20px; color: var(--orange); }
.header-phone .ph-label { display: block; font-size: 0.68rem; font-weight: 500; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--ice);
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .main-nav {
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 28px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 1.1rem; }
  .main-nav .btn { width: 100%; margin-top: 14px; padding: 16px 30px; }
  .header-phone .ph-label { display: none; }
  .nav-toggle { display: flex; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 65%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 84px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(100deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 3px, transparent 3px, transparent 46px);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero p.lead { font-size: 1.15rem; color: #dcebf9; max-width: 540px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-trust span { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 500; font-size: 0.92rem; color: #eaf3fc; }
.hero-trust svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-art .glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,92,7,0.35) 0%, rgba(245,92,7,0) 70%);
  border-radius: 50%;
}
.hero-art img { position: relative; width: 100%; max-width: 420px; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35)); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .btn-row { justify-content: center; }
  .hero-art img { max-width: 280px; }
}

/* wave divider */
.wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
}
.wave svg { width: 100%; height: 70px; display: block; }

/* ---- Icon tile ---- */
.icon-tile {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ice);
  color: var(--blue);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-tile svg { width: 30px; height: 30px; }
.icon-tile.orange { background: #fff1e8; color: var(--orange); }

/* ---- Cards grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-500); }
.card .link-arrow { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-family: var(--font-display); }
.card .link-arrow svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.card:hover .link-arrow svg { transform: translateX(4px); }

.service-card {
  border-radius: var(--radius-lg);
  padding: 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-card.blue { background: linear-gradient(150deg, var(--blue) 0%, var(--blue-deep) 100%); }
.service-card.orange { background: linear-gradient(150deg, var(--orange) 0%, var(--orange-dark) 100%); }
.service-card .icon-tile { background: rgba(255,255,255,0.16); color: var(--white); }
.service-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,0.88); margin-bottom: 22px; }
.service-card ul { margin-bottom: 24px; }
.service-card li { display: flex; gap: 10px; margin-bottom: 8px; font-size: 0.95rem; color: rgba(255,255,255,0.92); }
.service-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* ---- Process steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-300);
  z-index: 0;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .steps::before { display: none; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; text-align: center; }
.step-num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(14, 96, 186, 0.32);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; }

/* ---- Chips ---- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.chip svg { width: 14px; height: 14px; color: var(--orange); }
.bg-blue .chip, .bg-navy .chip { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.16); box-shadow: none; }
.bg-blue .chip svg, .bg-navy .chip svg { color: #ffb385; }

/* ---- Location cards (service area) ---- */
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .location-grid { grid-template-columns: 1fr; } }
.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.location-card .icon-tile { width: 50px; height: 50px; margin-bottom: 16px; }
.location-card .icon-tile svg { width: 24px; height: 24px; }
.location-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.location-card ul { display: flex; flex-direction: column; gap: 8px; }
.location-card li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray-500); }
.location-card li svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }
.location-card.featured { background: linear-gradient(150deg, var(--blue) 0%, var(--blue-deep) 100%); border: none; }
.location-card.featured h3 { color: var(--white); }
.location-card.featured li { color: rgba(255,255,255,0.85); }
.location-card.featured .icon-tile { background: rgba(255,255,255,0.16); color: var(--white); }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 20px 45px rgba(245, 92, 7, 0.28);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.92); max-width: 480px; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: #b9c8d8; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p { color: #93a5b8; max-width: 280px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: #b9c8d8; }
.footer-contact svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #7e90a3;
}

/* ---- Page header (interior pages) ---- */
.page-hero {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 70%, var(--navy) 100%);
  color: var(--white);
  padding: 64px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(100deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 3px, transparent 3px, transparent 46px);
}
.breadcrumb { position: relative; z-index: 2; display: flex; gap: 8px; align-items: center; font-size: 0.88rem; color: #bdd7ef; margin-bottom: 18px; font-weight: 500; }
.page-hero h1 { color: var(--white); position: relative; z-index: 2; max-width: 700px; }
.page-hero p.lead { color: #dcebf9; max-width: 620px; margin-top: 16px; font-size: 1.08rem; position: relative; z-index: 2; }

/* ---- Two-column content block ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; }
.check-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.check-list svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.check-list strong { color: var(--navy); display: block; font-family: var(--font-display); font-weight: 600; margin-bottom: 2px; }
.check-list span.desc { color: var(--gray-500); font-size: 0.94rem; }

.stat-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.stat-panel .icon-tile { margin-bottom: 26px; }

/* diagram illustration frame */
.diagram-frame {
  background: var(--ice);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diagram-frame svg { width: 100%; height: auto; max-width: 380px; }

/* ---- Honesty / values section ---- */
.value-card { text-align: center; padding: 30px 22px; }
.value-card .icon-tile { margin: 0 auto 18px; }

/* ---- Service area map block ---- */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .area-wrap { grid-template-columns: 1fr; } }
.radar {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ice) 0%, var(--ice) 30%, var(--ice-2) 31%, var(--ice-2) 60%, #d3e7f8 61%, #d3e7f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar .pin {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.radar .pin.center {
  background: var(--orange);
  border-color: var(--orange-dark);
  color: var(--white);
  font-size: 0.92rem;
  padding: 12px 20px;
  box-shadow: 0 10px 24px rgba(245,92,7,0.4);
}

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: flex-start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-line:last-child { border-bottom: none; }
.contact-line .icon-tile { background: rgba(255,255,255,0.12); color: var(--orange); margin-bottom: 0; width: 46px; height: 46px; border-radius: 12px; }
.contact-line .icon-tile svg { width: 22px; height: 22px; }
.contact-line strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 0.98rem; margin-bottom: 2px; }
.contact-line span { color: #b9c8d8; font-size: 0.92rem; }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--navy); font-family: var(--font-display); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300);
  background: var(--gray-100);
  color: var(--gray-900);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--gray-500); margin-top: 14px; }
.form-success { display: none; align-items: center; gap: 10px; background: #eaf7ee; color: #1f7a3d; padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; font-size: 0.92rem; }
.form-success.show { display: flex; }

/* ---- Photo grid ---- */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 700px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.photo-grid img { width: 100%; height: 260px; object-fit: cover; display: block; }
.photo-grid figcaption { padding: 14px 18px; font-size: 0.88rem; color: var(--gray-500); }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--gray-100); padding: 24px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.05rem; }
.faq-q svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; color: var(--gray-500); }
.faq-item.open .faq-a { max-height: 240px; margin-top: 14px; }

/* ---- Sticky mobile call bar ---- */
.mobile-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  background: var(--orange);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}
.mobile-call-bar svg { width: 20px; height: 20px; }
@media (max-width: 640px) { .mobile-call-bar { display: flex; } body { padding-bottom: 60px; } }

/* ---- reveal animation ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
