/* =========================================================
   LM Roofing — Design System
   Modern & Trustworthy direction (per spec v1, 24 May 2026)
   ========================================================= */

:root {
  /* Palette (spec §2.1) */
  --slate: #14385B;
  --slate-700: #0F2A47;
  --slate-600: #1A4571;
  --charcoal: #1F2933;
  --amber: #E0801A;
  --amber-600: #C26D14;
  --amber-100: #FBEAD3;
  --steel: #5C6B7A;
  --mist: #F1F4F7;
  --line: #C9D3DD;
  --white: #FFFFFF;

  /* Type */
  --font-heading: 'Poppins', 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Radius / shadows */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(20, 56, 91, 0.06), 0 1px 3px rgba(20, 56, 91, 0.04);
  --shadow-md: 0 4px 10px rgba(20, 56, 91, 0.08), 0 2px 4px rgba(20, 56, 91, 0.04);
  --shadow-lg: 0 12px 30px rgba(20, 56, 91, 0.14), 0 4px 12px rgba(20, 56, 91, 0.06);

  --header-h: 84px;
  --header-h-mobile: 68px;
  --container: 1200px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--slate); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--amber-600); }
button { font: inherit; cursor: pointer; }

/* Focus visibility (a11y) */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--slate);
  margin: 0 0 var(--s-4);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }   /* 32–52 */
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }  /* 24–34 */
h3 { font-size: clamp(1.125rem, 1.7vw, 1.375rem); font-weight: 600; }
p  { margin: 0 0 var(--s-4); }
.lead { font-size: 1.125rem; color: var(--charcoal); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.caption { color: var(--steel); font-size: 0.875rem; }

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--tight { padding: clamp(36px, 5vw, 64px) 0; }
.section--mist { background: var(--mist); }
.section--slate { background: var(--slate); color: var(--white); }
.section--slate h1, .section--slate h2, .section--slate h3 { color: var(--white); }
.section--slate a { color: var(--amber); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--s-7); }
.section-head p { color: var(--steel); font-size: 1.0625rem; margin-top: var(--s-3); }
.section--slate .section-head p { color: rgba(255,255,255,0.85); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
}
.btn--primary { background: var(--amber); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--amber-600); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: transparent; color: var(--slate); border-color: var(--slate); }
.btn--secondary:hover { background: var(--slate); color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: var(--white); color: var(--slate); border-color: var(--white); }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; min-height: 40px; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* =========================================================
   Top utility strip
   ========================================================= */
.utility {
  background: var(--slate-700);
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  padding: 8px 0;
}
.utility .container { display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); flex-wrap: wrap; }
.utility a { color: var(--amber); font-weight: 600; }
.utility .pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 999px;
}
.star { color: #FFD25E; }

/* =========================================================
   Header / nav
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--slate);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: var(--s-3); }
.brand img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.brand__text { font-family: var(--font-heading); color: var(--white); font-weight: 600; line-height: 1.1; }
.brand__text small { display: block; font-size: 0.7rem; opacity: 0.75; font-weight: 400; letter-spacing: 0.04em; }

.nav { display: flex; align-items: center; gap: var(--s-5); }
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.nav__link {
  color: rgba(255,255,255,0.92);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  position: relative;
}
.nav__link:hover, .nav__link.active { color: var(--amber); background: rgba(255,255,255,0.06); }
.nav__cta { display: flex; align-items: center; gap: var(--s-3); }
.nav__phone {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  white-space: nowrap;
}
.nav__phone:hover { color: var(--amber); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .header__inner { height: var(--header-h-mobile); }
  .brand img { height: 38px; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: var(--header-h-mobile);
    left: 0;
    right: 0;
    background: var(--slate);
    padding: var(--s-4) var(--s-5) var(--s-6);
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-md);
  }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link { padding: 14px 16px; font-size: 1rem; }
  .nav__cta { flex-direction: column; align-items: stretch; gap: var(--s-3); margin-top: var(--s-3); padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,0.1); }
  .nav__cta .btn { width: 100%; }
  .menu-toggle { display: inline-flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(20,56,91,0.92) 0%, rgba(20,56,91,0.78) 55%, rgba(31,41,51,0.55) 100%);
}
.hero__inner {
  padding: clamp(64px, 12vw, 140px) 0 clamp(72px, 12vw, 130px);
  max-width: 760px;
}
.hero h1 { color: var(--white); margin-bottom: var(--s-5); }
.hero p { font-size: clamp(1rem, 1.4vw, 1.18rem); color: rgba(255,255,255,0.92); max-width: 620px; margin-bottom: var(--s-6); }
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: var(--s-5);
  backdrop-filter: blur(4px);
}
.hero__meta strong { color: var(--white); font-family: var(--font-heading); }

.hero--compact .hero__inner { padding: clamp(56px, 9vw, 96px) 0 clamp(48px, 7vw, 80px); }
.hero--compact h1 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); }

.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: var(--s-4); }
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--amber); }

/* =========================================================
   Trust bar
   ========================================================= */
.trust {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s-5) 0;
}
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-7);
}
.trust__logo {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-heading); color: var(--steel); font-weight: 600;
}
.trust__logo img { height: 48px; width: auto; opacity: 0.9; }
.trust__rating {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: var(--mist);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--slate);
}
.trust__rating .star { color: var(--amber); }

/* =========================================================
   Service cards grid
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .cards--3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__media {
  aspect-ratio: 4 / 3;
  background: var(--mist);
  background-size: cover;
  background-position: center;
}
.card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.card__title { margin: 0 0 var(--s-2); font-size: 1.1rem; }
.card__text { color: var(--steel); margin: 0 0 var(--s-4); font-size: 0.97rem; flex: 1; }
.card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__link:hover { color: var(--amber-600); gap: 10px; }

/* =========================================================
   Step / "How it works"
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  counter-reset: stepcount;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-6);
  position: relative;
  counter-increment: stepcount;
}
.step::before {
  content: counter(stepcount);
  position: absolute;
  top: -20px; left: var(--s-6);
  width: 44px; height: 44px;
  background: var(--amber);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.step h3 { margin-top: var(--s-3); }
.step p { color: var(--steel); margin: 0; }

/* =========================================================
   Stats
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  text-align: center;
}
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }
.stat__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.stat__label { font-family: var(--font-heading); color: var(--white); font-weight: 500; opacity: 0.9; }

/* =========================================================
   Gallery / project grid
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.tile {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tile:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,56,91,0) 60%, rgba(20,56,91,0.55) 100%);
  opacity: 0; transition: opacity .25s var(--ease);
}
.tile:hover::after { opacity: 1; }
.tile__caption {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0; transition: opacity .25s var(--ease);
  z-index: 1;
}
.tile:hover .tile__caption { opacity: 1; }

.filter-chips { display: flex; gap: var(--s-2); flex-wrap: wrap; justify-content: center; margin-bottom: var(--s-6); }
.chip {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--slate); }
.chip.is-active { background: var(--slate); color: var(--white); border-color: var(--slate); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 30, 50, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: var(--s-5);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.12); color: var(--white);
  border: none; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.4rem;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-6);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial p {
  font-size: 1.15rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: var(--s-4);
}
.testimonial cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--slate);
}
.testimonial__stars { color: var(--amber); margin-bottom: var(--s-3); font-size: 1.1rem; letter-spacing: 2px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: var(--slate);
  color: var(--white);
  padding: clamp(48px, 7vw, 80px) 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: var(--s-3); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto var(--s-5); }
.cta-band .btn-row { justify-content: center; }

/* =========================================================
   Values / promises
   ========================================================= */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
@media (max-width: 980px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }
.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-5);
}
.value__icon {
  width: 44px; height: 44px;
  background: var(--amber-100);
  color: var(--amber-600);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  margin-bottom: var(--s-3);
}
.value h3 { margin-bottom: var(--s-2); font-size: 1.05rem; }
.value p { color: var(--steel); font-size: 0.95rem; margin: 0; }

/* =========================================================
   Service detail page
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: var(--s-6); } }
.aside {
  background: var(--mist);
  border-radius: var(--r-md);
  padding: var(--s-6);
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.aside h3 { margin-top: 0; font-size: 1.05rem; }
.aside ul { list-style: none; padding: 0; margin: 0 0 var(--s-5); }
.aside li { padding: 6px 0; color: var(--charcoal); border-bottom: 1px solid var(--line); }
.aside li:last-child { border-bottom: none; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0;
  display: grid;
  gap: var(--s-3);
}
.feature-list li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: var(--mist);
  border-radius: var(--r-sm);
}
.feature-list li::before {
  content: "";
  position: absolute;
  top: 50%; left: 14px;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--amber-100);
}
.feature-list li::after {
  content: "";
  position: absolute;
  top: 50%; left: 19px;
  width: 4px; height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translateY(-65%) rotate(45deg);
}

.callout {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-600) 100%);
  color: var(--white);
  padding: var(--s-5) var(--s-6);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.callout strong { font-family: var(--font-heading); font-size: 1.1rem; display: block; }
.callout a.btn { background: var(--white); color: var(--amber-600); border-color: var(--white); }
.callout a.btn:hover { background: var(--slate); color: var(--white); border-color: var(--slate); }
.callout__text { flex: 1; min-width: 220px; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.form {
  background: var(--white);
  padding: var(--s-6);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: var(--s-4); }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--steel);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(20,56,91,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }

.contact-info { background: var(--mist); border-radius: var(--r-md); padding: var(--s-6); }
.contact-info h3 { margin-top: 0; }
.contact-info dl { display: grid; gap: var(--s-4); margin: 0; }
.contact-info dt {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-info dd { margin: 0; font-family: var(--font-heading); font-weight: 600; color: var(--slate); font-size: 1.05rem; }
.contact-info dd a { color: var(--slate); }
.contact-info dd a:hover { color: var(--amber-600); }
.emergency-badge {
  margin-top: var(--s-5);
  padding: var(--s-4);
  background: var(--slate);
  color: var(--white);
  border-radius: var(--r-sm);
}
.emergency-badge strong { color: var(--amber); font-family: var(--font-heading); display: block; margin-bottom: 4px; }

.map-embed {
  margin-top: var(--s-6);
  width: 100%;
  aspect-ratio: 16/7;
  border: 0;
  border-radius: var(--r-md);
  filter: grayscale(0.15) contrast(1.02);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: var(--s-8) 0 0;
  font-size: 0.95rem;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--s-4);
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
}
@media (max-width: 880px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__cols { grid-template-columns: 1fr; } }
.footer__brand img { height: 50px; margin-bottom: var(--s-3); filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 8px; }
.footer__list a { color: rgba(255,255,255,0.78); }
.footer__list a:hover { color: var(--amber); }
.footer__contact dt {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.footer__contact dd { margin: 0 0 var(--s-3); color: rgba(255,255,255,0.92); font-weight: 500; }
.footer__contact a { color: var(--amber); }

.footer__accred {
  padding: var(--s-5) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.footer__accred span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
}
.footer__social {
  padding: var(--s-5) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.footer__social-label {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-right: var(--s-3);
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover {
  background: var(--amber);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__bottom {
  padding: var(--s-5) 0;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}
.footer__bottom a { color: rgba(255,255,255,0.7); }
.footer__bottom a:hover { color: var(--amber); }

/* =========================================================
   Mobile sticky call/quote bar
   ========================================================= */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(20,56,91,0.08);
  z-index: 60;
  padding: 8px;
  gap: 6px;
}
.mobile-bar .btn { flex: 1; min-height: 48px; padding: 10px 8px; font-size: 0.85rem; gap: 4px; }
@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  /* Gallery captions: always visible on mobile (no hover affordance) */
  .tile__caption { opacity: 1; }
  .tile::after { opacity: 1; }
}

/* =========================================================
   News / article
   ========================================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-5);
}
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article h2 { margin-top: var(--s-7); }
.article h3 { margin-top: var(--s-5); color: var(--slate); }
.article ul { padding-left: 22px; }
.article ul li { margin-bottom: var(--s-2); }
.article__meta {
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: var(--s-5);
  display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center;
}
.article__meta::before {
  content: ""; display: inline-block;
  width: 28px; height: 2px; background: var(--amber);
}

/* =========================================================
   Utilities
   ========================================================= */
.text-center { text-align: center; }
.muted { color: var(--steel); }
.hide-on-mobile { display: initial; }
.show-on-mobile { display: none; }
@media (max-width: 760px) {
  .hide-on-mobile { display: none; }
  .show-on-mobile { display: initial; }
}

.icon { width: 18px; height: 18px; }

/* =========================================================
   FAQ accordion (service pages)
   ========================================================= */
.faq { margin: var(--s-5) 0; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details[open] {
  border-color: var(--slate);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: var(--s-4) var(--s-5);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: var(--s-5);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--amber);
  font-weight: 400;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq .faq__body {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--charcoal);
}
.faq .faq__body p:last-child { margin-bottom: 0; }
