/* ============================================================
   Five Star Renovations — styles.css
   Brand (from logo): Sky #5CC0E6 · Navy #0B1C2E · Near-black #06111D
   Oswald (brand wordmark) · Montserrat (headings) · Inter (body)
   ============================================================ */

:root {
  --navy: #0b1c2e;
  --navy-deep: #06111d;
  --navy-soft: #12324e;
  --blue: #2f89bd;
  --blue-dark: #256f9c;
  --sky: #5cc0e6;
  --slate: #8695a6;
  --line: #e4e9f0;
  --bg-light: #f1f6fa;
  --white: #ffffff;
  --heading: #0b1c2e;
  --body: #465a6e;
  --shadow-sm: 0 1px 3px rgba(11, 28, 46, .08);
  --shadow-md: 0 10px 30px rgba(11, 28, 46, .13);
  --shadow-lg: 0 24px 60px rgba(11, 28, 46, .26);
  --radius: 10px;
  --font-head: "Montserrat", "Helvetica Neue", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
  --font-brand: "Oswald", "Helvetica Neue", sans-serif;
  --header-h: 74px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-weight: 800; font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-weight: 700; font-size: 1.15rem; }
p { margin: 0 0 1em; }
a { color: var(--blue); }
.container { width: min(1160px, 92%); margin-inline: auto; }

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .8rem;
}
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-head { max-width: 660px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--body); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark p { color: #b8c6d4; }
.on-dark .eyebrow { color: var(--sky); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: .95rem 1.6rem;
  border-radius: 7px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn svg { flex: none; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(47, 137, 189, .35); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: #e6f4fb; transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { font-size: .92rem; padding: 1.05rem 2rem; }

/* ---------- Header / brand lockup ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-icon { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--sky);
}
.brand-sub {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: .66rem;
  letter-spacing: .38em;
  text-indent: .38em;
  color: #cfe3ee;
  margin-top: .18rem;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #cdd8e6;
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a[aria-current="page"] { color: var(--white); border-bottom-color: var(--sky); }
.header-cta .btn { padding: .72rem 1.3rem; font-size: .78rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2.5px; border-radius: 2px; background: var(--white); margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 959px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-deep);
    border-bottom: 2px solid var(--sky);
    padding: .4rem 0 1rem;
    transform: translateY(-130%);
    transition: transform .28s ease;
    z-index: 55;
  }
  .nav-open .main-nav { transform: translateY(0); }
  .main-nav a { padding: .95rem 6%; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .main-nav a[aria-current="page"] { border-bottom-color: rgba(255,255,255,.06); }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 30%, rgba(11,28,46,.82) 48%, rgba(11,28,46,.35) 74%, rgba(11,28,46,.28) 100%),
    linear-gradient(0deg, rgba(11,28,46,.5), rgba(11,28,46,.05) 42%),
    var(--hero-img, none);
  background-size: cover;
  background-position: 70% center;
}
.hero-inner { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; max-width: 580px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px; padding: .5rem 1.1rem; margin-bottom: 1.4rem;
}
.hero-chip svg { color: var(--sky); }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--sky); }
.hero-sub { color: #c5d3e0; font-size: 1.06rem; max-width: 32rem; margin-bottom: 1.9rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
@media (max-width: 767px) {
  .hero-bg {
    background-image:
      linear-gradient(0deg, var(--navy) 8%, rgba(11,28,46,.78) 55%, rgba(11,28,46,.5) 100%),
      var(--hero-img, none);
    background-position: center 32%;
  }
}

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-bar ul { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 0; padding: 1.4rem 0; }
.trust-bar li { display: flex; align-items: center; justify-content: center; gap: .8rem; padding: .35rem 1rem; }
.trust-bar li + li { border-left: 1px solid var(--line); }
.trust-bar svg { color: var(--blue); flex: none; }
.trust-bar strong { display: block; font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--heading); line-height: 1.3; }
.trust-bar span { display: block; font-size: .8rem; color: var(--slate); line-height: 1.35; }
@media (max-width: 959px) { .trust-bar ul { grid-template-columns: repeat(2, 1fr); gap: .4rem 0; } .trust-bar li:nth-child(3) { border-left: 0; } }
@media (max-width: 520px) { .trust-bar ul { grid-template-columns: 1fr 1fr; } .trust-bar li { flex-direction: column; text-align: center; gap: .4rem; } .trust-bar li + li { border-left: 0; } }

/* ---------- Service cards ---------- */
.services-section { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.6rem;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.svc-card:hover { border-color: rgba(47,137,189,.5); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-icon { width: 56px; height: 56px; margin: 0 0 1rem; border-radius: 12px; background: #e9f5fb; display: grid; place-items: center; color: var(--blue); }
.svc-card h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: .5rem; color: var(--heading); }
.svc-card p { font-size: .9rem; color: var(--slate); line-height: 1.6; margin: 0; }
.svc-card .svc-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.svc-more { text-align: center; margin-top: 2.4rem; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery (recent work) ---------- */
.gallery-section { background: var(--navy); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem .9rem .7rem;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: #fff;
  background: linear-gradient(0deg, rgba(6,17,29,.85), transparent);
  opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease;
}
.gallery-grid figure:hover .cap { opacity: 1; transform: none; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }
.gallery-cta { text-align: center; margin-top: 2.2rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } .gallery-grid .wide { grid-column: span 2; } }
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gallery-grid .cap { opacity: 1; transform: none; font-size: .74rem; }
}

/* ---------- Video section (jobsite clips) ---------- */
.video-section { background: var(--bg-light); }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.video-item { margin: 0; }
.video-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: #06111d;
}
.video-item .vcap {
  display: flex; align-items: center; gap: .45rem;
  margin-top: .8rem;
  font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--heading);
}
.video-item .vcap svg { color: var(--blue); flex: none; }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; } }
@media (max-width: 480px) { .video-grid { grid-template-columns: 1fr 1fr; gap: .7rem; } .video-item .vcap { font-size: .76rem; } }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 1.5rem; text-align: center; }
.why-item .why-icon { width: 64px; height: 64px; margin: 0 auto 1.1rem; border-radius: 50%; border: 1.5px solid rgba(47,137,189,.35); background: #e9f5fb; display: grid; place-items: center; color: var(--blue); }
.why-item h3 { font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; }
.why-item p { font-size: .9rem; color: var(--slate); margin: 0; }
@media (max-width: 899px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(700px 360px at 12% 20%, rgba(92,192,230,.32), transparent 60%),
    radial-gradient(900px 500px at 88% 110%, rgba(6,17,29,.55), transparent 65%),
    linear-gradient(120deg, var(--navy-deep), var(--navy-soft));
  overflow: hidden;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-brandmark { flex: none; width: 92px; opacity: .97; filter: drop-shadow(0 8px 20px rgba(6,17,29,.5)); }
.cta-text { flex: 1; }
.cta-text h2 { color: var(--white); margin-bottom: .5rem; }
.cta-text p { color: #cfe0ec; margin: 0; }
.cta-actions { flex: none; text-align: center; }
.cta-actions .mini { display: block; font-size: .78rem; color: #cfe0ec; margin-top: .8rem; letter-spacing: .04em; }
@media (max-width: 899px) { .cta-inner { flex-direction: column; text-align: center; } .cta-brandmark { width: 74px; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    linear-gradient(90deg, rgba(11,28,46,.96) 26%, rgba(11,28,46,.78) 100%),
    var(--page-img, var(--navy));
  background-size: cover; background-position: center;
  padding: clamp(3rem, 6vw, 4.6rem) 0;
}
.page-hero h1 { color: var(--white); margin-bottom: .6rem; }
.page-hero p { color: #c5d3e0; max-width: 46rem; font-size: 1.05rem; margin-bottom: 0; }
.page-hero .eyebrow { color: var(--sky); }

/* ---------- Services page ---------- */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding: clamp(2.5rem, 6vw, 4rem) 0; border-bottom: 1px solid var(--line); }
.service-block:last-of-type { border-bottom: 0; }
.service-block.flip .service-media { order: 2; }
.service-media img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.service-copy .service-cta { margin-top: 1.3rem; }
.service-tag { display: inline-block; font-family: var(--font-head); font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); background: #e9f5fb; border: 1px solid rgba(47,137,189,.25); border-radius: 4px; padding: .32rem .75rem; margin-bottom: .9rem; }
.service-list { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: .5rem; }
.service-list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .94rem; color: var(--heading); }
.service-list svg { color: var(--blue); flex: none; margin-top: .25rem; }
@media (max-width: 899px) { .service-block { grid-template-columns: 1fr; } .service-block.flip .service-media { order: 0; } }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-light); }
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--heading); padding: 1.05rem 1.3rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; font-weight: 600; color: var(--blue); transition: transform .2s ease; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.3rem 1.2rem; color: var(--body); font-size: .95rem; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.about-grid .photo-frame { position: sticky; top: calc(var(--header-h) + 24px); }
.photo-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.photo-frame img { width: 100%; display: block; }
.pull-quote { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; line-height: 1.6; color: var(--navy); border-left: 3px solid var(--sky); padding: .4rem 0 .4rem 1.2rem; margin: 1.8rem 0; }
@media (max-width: 899px) { .about-grid { grid-template-columns: 1fr; } .about-grid .photo-frame { position: static; max-width: 520px; } }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.value-card .why-icon { width: 52px; height: 52px; margin: 0 0 1rem; border-radius: 12px; }
.value-card h3 { font-size: .98rem; }
.value-card p { color: var(--slate); font-size: .9rem; margin: 0; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 899px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 1.1rem; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; display: flex; gap: 1rem; align-items: flex-start; }
.contact-card .ci { width: 46px; height: 46px; flex: none; border-radius: 12px; background: #e9f5fb; color: var(--blue); display: grid; place-items: center; }
.contact-card h3 { margin-bottom: .25rem; font-size: 1rem; }
.contact-card p { margin: 0; color: var(--body); font-size: .93rem; }
.contact-card a { color: var(--blue); text-decoration: none; font-weight: 600; }
.placeholder-note { display: inline-block; font-size: .72rem; color: var(--slate); font-style: italic; margin-top: .2rem; }
.phone-hero { display: block; background: linear-gradient(120deg, var(--navy), var(--navy-soft)); color: var(--white); text-decoration: none; border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-md); transition: transform .18s ease; margin-bottom: 1.1rem; }
.phone-hero:hover { transform: translateY(-2px); }
.phone-hero .label { font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sky); }
.phone-hero .number { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 5vw, 2.4rem); display: block; margin: .3rem 0 .2rem; }
.phone-hero .sub { color: #b8c6d4; font-size: .9rem; }
.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: clamp(1.5rem, 4vw, 2.3rem); }
.quote-form h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .04em; color: var(--heading); margin-bottom: .35rem; }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: .95rem; color: var(--heading); background: var(--bg-light); border: 1.5px solid var(--line); border-radius: 7px; padding: .75rem .9rem; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,137,189,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field .error-msg { display: none; color: #b3261e; font-size: .82rem; font-weight: 600; margin-top: .3rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3261e; }
.field.invalid .error-msg { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .9rem; color: var(--slate); text-align: center; margin: 1rem 0 0; }
.form-status { display: none; border-radius: 7px; padding: 1rem 1.2rem; font-weight: 500; font-size: .95rem; margin-bottom: 1rem; }
.form-status.success { display: block; background: #e7f6ec; color: #14532d; border: 1px solid #b7e2c5; }
.form-status.error { display: block; background: #fdecea; color: #8c1d18; border: 1px solid #f5c6c2; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b8c6d4; padding: clamp(3rem, 6vw, 4rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 2.5rem; }
.footer-brand p { font-size: .9rem; margin-top: 1rem; line-height: 1.7; }
.footer-brand .brand-icon { height: 44px; }
.site-footer h3 { font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer ul a { color: #b8c6d4; text-decoration: none; font-size: .92rem; transition: color .15s ease; }
.site-footer ul a:hover { color: var(--sky); }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; }
.footer-contact svg { color: var(--sky); flex: none; margin-top: .2rem; }
.footer-contact a { color: var(--white); font-weight: 600; text-decoration: none; }
.footer-contact a:hover { color: var(--sky); }
.footer-review a { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; color: var(--sky); font-weight: 600; font-size: .9rem; text-decoration: none; }
.footer-review a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; font-size: .82rem; display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; }
.footer-bottom a { color: #b8c6d4; }
@media (max-width: 899px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: var(--navy-deep); border-top: 2px solid var(--sky); padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom)); gap: .55rem; }
.mobile-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .3rem; font-family: var(--font-head); font-weight: 700; font-size: .78rem; white-space: nowrap; text-decoration: none; border-radius: 7px; padding: .85rem .4rem; }
.mobile-bar .bar-call { background: var(--blue); color: var(--white); flex: 1.35; }
.mobile-bar .bar-quote { border: 1.5px solid rgba(255,255,255,.4); color: var(--white); }
@media (max-width: 959px) { .mobile-bar { display: flex; } body { padding-bottom: 74px; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal.in.d1 { transition-delay: .07s; }
.reveal.in.d2 { transition-delay: .14s; }
.reveal.in.d3 { transition-delay: .21s; }
body.is-static .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .reveal.in { transition: none; }
  .btn, .svc-card, .phone-hero, .gallery-grid img { transition: none; }
}

/* ---------- Utility ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
