/* ══════════════════════════════
   COMPONENTS
   ══════════════════════════════ */

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: var(--slate-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}
.nav__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-slate);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width 0.25s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__phone {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-slate);
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--copper-light); }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--slate-dark);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 2px solid var(--copper);
  }
  .nav__links.is-open { display: flex; }
  .nav__links li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a {
    display: block;
    padding: 16px 24px;
    width: 100%;
  }
  .nav__links a::after { display: none; }
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav__right .btn { display: none; }
}

/* ── Hero ── */
.hero {
  background: var(--slate-deep);
  color: var(--white);
  padding: clamp(40px, 6vh, 80px) 0 clamp(80px, 11vh, 130px);
  position: relative;
  overflow: hidden;
  /* Fit available viewport height */
  min-height: calc(100svh - var(--nav-h) - var(--banner-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Rich layered atmosphere: copper warmth right, depth left, subtle grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 92% 55%, rgba(196,120,26,0.28) 0%, transparent 50%),
    radial-gradient(ellipse 45% 55% at 5% 100%, rgba(10,16,22,0.95) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(255,255,255,0.03) 0%, transparent 70%),
    repeating-linear-gradient(90deg, transparent, transparent 96px, rgba(255,255,255,0.013) 96px, rgba(255,255,255,0.013) 97px),
    repeating-linear-gradient(0deg,  transparent, transparent 96px, rgba(255,255,255,0.008) 96px, rgba(255,255,255,0.008) 97px);
  pointer-events: none;
}
/* Angled bottom cut-away */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: clamp(60px, 9vh, 120px);
  background: var(--white);
  clip-path: polygon(0 100%, 100% 14%, 100% 100%);
}
.hero--cream::after { background: var(--cream); }

/* Copper accent bar on left edge */
.hero .hero__accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--copper) 0%, rgba(196,120,26,0) 80%);
  pointer-events: none;
  z-index: 2;
}

/* Architectural gable silhouette */
.hero__gable {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  height: 95%;
  pointer-events: none;
  z-index: 0;
}
.hero__gable::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,0.018) 0%, transparent 65%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 35%, 100% 100%, 0% 100%, 0% 35%);
}
.hero__gable::after {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(30% 0%, 50% 16%, 70% 0%, 100% 35%, 100% 36%, 70% 1%, 50% 17%, 30% 1%, 0% 36%, 0% 35%);
  border-top: 1px solid rgba(255,255,255,0.035);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.hero__content { display: flex; flex-direction: column; gap: 0; }
.hero__content h1 { margin-bottom: 0; }

/* Italic accent on key word in headline */
.hero__heading-em {
  font-style: italic;
  color: var(--copper-light);
  font-weight: 500;
}

/* Thin copper rule below headline — editorial refinement */
.hero__rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper) 0%, rgba(196,120,26,0.3) 100%);
  margin: 24px 0;
  flex-shrink: 0;
}

.hero__content .hero__sub {
  font-size: 17.5px;
  color: var(--text-slate);
  margin-top: 20px;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* In-hero proof points */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.hero__proof-item:first-child { border-left: none; padding-left: 0; }
.hero__proof-item svg { color: var(--copper); flex-shrink: 0; }

/* ── Image panel ── */
.hero__image-wrap {
  position: relative;
}

/* Copper left accent bar */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  top: 24px; bottom: 24px;
  left: -14px;
  width: 3px;
  background: var(--copper);
  border-radius: 2px;
  pointer-events: none;
  z-index: 3;
}

.hero__image-wrap::after { display: none; }

.hero__image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.25);
  display: block;
}

/* Dark gradient scrim for badge legibility */
.hero__image-scrim {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10,16,22,0.85) 0%, rgba(10,16,22,0.25) 55%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}

/* Floating stat badges inside the image over the scrim */
.hero__stat-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero__stat-badge--bl {
  bottom: 22px;
  left: 22px;
}
.hero__stat-badge--br {
  bottom: 22px;
  right: 22px;
}
.hero__stat-badge-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1;
  white-space: nowrap;
}
.hero__stat-badge-label {
  font-family: var(--font-label);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.hero--single {
  padding: 72px 0 96px;
  min-height: unset;
  display: block;
}
.hero--single .hero__inner { grid-template-columns: 1fr; max-width: 780px; }
.hero--single h1 { margin-bottom: 16px; }

@media (max-width: 768px) {
  .hero {
    padding: 56px 0 96px;
    min-height: unset;
    display: block;
  }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image-wrap { display: none; }
  .hero::after { height: 60px; }
  .hero__proof { gap: 0; margin-top: 20px; padding-top: 20px; }
  .hero__proof-item { font-size: 10px; padding: 0 12px; }
  .hero__gable { display: none; }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 28px 0;
}
.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.trust-bar__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 10px 18px;
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.trust-bar__badge:hover {
  border-color: var(--copper);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}
.trust-bar__badge svg {
  flex-shrink: 0;
  color: var(--copper);
  width: 20px;
  height: 20px;
}
.trust-bar__divider { display: none; }

/* ── Accreditation logos bar (home page) ── */
.accred-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 24px 0;
}
.accred-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.accred-bar__inner img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2) opacity(0.75);
  transition: filter 0.25s;
}
.accred-bar__inner img:hover {
  filter: grayscale(0) opacity(1);
}
@media (max-width: 640px) {
  .accred-bar__inner { gap: 24px; }
  .accred-bar__inner img { height: 36px; }
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--slate-dark);
  padding: 56px 0;
}
.stats-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stats-strip__stat {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
}
.stats-strip__stat:first-child { border-left: none; }
.stats-strip__stat:hover { background: rgba(196,120,26,0.08); }
.stats-strip__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-strip__label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-slate-dim);
}
@media (max-width: 640px) {
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .stats-strip__stat:nth-child(-n+2) { border-top: none; }
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  display: block;
  background: var(--white);
  padding: 36px 32px;
  text-decoration: none;
  position: relative;
  transition: background 0.25s, box-shadow 0.25s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--copper);
  transition: height 0.3s;
}
.service-card:hover { background: var(--cream); box-shadow: inset 0 0 40px rgba(196,120,26,0.06); }
.service-card:hover::before { height: 100%; }
.service-card:hover .service-card__arrow { transform: translateX(6px); color: var(--copper); }

.service-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  opacity: 0.7;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card__arrow {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Areas ── */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.area-tag {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-slate);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border-radius: 2px;
}
a.area-tag:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
  transform: translateY(-1px);
}
span.area-tag { opacity: 0.5; cursor: default; }

/* ── Why Hills feature list ── */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--copper-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item__icon svg { color: var(--copper); }
.why-item__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 4px;
}
.why-item__desc {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Process steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  margin-top: 56px;
  position: relative;
}
.process-steps::before { display: none; }

.process-step {
  text-align: left;
  position: relative;
  padding: 40px 36px 44px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.process-step__num {
  position: absolute;
  top: -12px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  width: auto; height: auto;
  border-radius: 0;
  background: none;
  display: block;
  margin: 0;
  pointer-events: none;
  user-select: none;
}
.process-step__label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-step__label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}
.process-step h3 { color: var(--white); margin-bottom: 12px; font-size: 22px; position: relative; }
.process-step p  { color: var(--text-slate-dim); font-size: 15px; margin: 0; position: relative; }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: 2px; }
  .process-step { padding: 32px 28px 36px; }
  .process-step__num { font-size: 100px; }
}

/* ── Review block ── */
.review-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: 0 4px 28px rgba(0,0,0,0.06);
}
.review-card__quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.6;
  color: var(--copper-pale);
  margin-bottom: 20px;
  display: block;
}
.review-card__text {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--slate-dark);
  line-height: 1.55;
  margin-bottom: 20px;
}
.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--copper);
}
.review-card__author {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.checkatrade-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: 20px;
  transition: opacity 0.2s;
  flex-wrap: wrap;
}
.checkatrade-link:hover { opacity: 0.75; }
.checkatrade-link span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
}
.checkatrade-link img {
  height: 16px;
  width: auto;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ── CTA block ── */
.cta-block {
  background: var(--slate);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.018) 18px,
    rgba(255,255,255,0.018) 19px
  );
  pointer-events: none;
  border-radius: inherit;
}
.cta-block h2 { color: var(--white); margin-bottom: 12px; }
.cta-block p  { color: var(--text-slate); margin-bottom: 32px; font-size: 18px; }
.cta-block__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ accordion ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--slate-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-item__q:hover { color: var(--copper); }
.faq-item__q-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  transition: background 0.2s, border-color 0.2s, transform 0.25s, color 0.2s;
  font-family: var(--font-body);
  line-height: 1;
}
.faq-item.is-open .faq-item__q-icon {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s;
  padding-bottom: 0;
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-item__a p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-slate-dim);
  padding: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-slate-dim); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--copper-light); }
.breadcrumb__sep { opacity: 0.4; }

/* ── WhatsApp float ── */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); }
}
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--wa-green);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s;
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.wa-float svg { width: 28px; height: 28px; }

/* ── Footer ── */
.footer {
  background: var(--slate-deep);
  color: var(--text-slate);
  padding: 72px 0 0;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer__brand img {
  height: 54px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-slate-dim);
  line-height: 1.7;
}
.footer__brand a { color: var(--text-slate-dim); transition: color 0.2s; }
.footer__brand a:hover { color: var(--copper-light); }

.footer__col-title {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-slate-dim);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--copper-light); }
.footer__links span { font-size: 14px; color: var(--text-slate-dim); opacity: 0.5; }

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__contact-item a {
  font-size: 14px;
  color: var(--text-slate-dim);
  transition: color 0.2s;
}
.footer__contact-item a:hover { color: var(--copper-light); }

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-slate-dim);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}
.footer__bottom a { color: var(--text-slate-dim); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--copper-light); }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Accreditation grid ── */
.accred-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.accred-grid img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.2s;
}
.accred-grid img:hover { filter: grayscale(0); }

/* ── Work photo gallery grid ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.work-grid__item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--slate-light);
}
.work-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.work-grid__item:hover img { transform: scale(1.06); }
.work-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .work-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Sub-service list ── */
.sub-service {
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.sub-service:last-child { border-bottom: none; }
.sub-service h3 { margin-bottom: 8px; }

/* ── Image + text layout ── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.content-split--reverse { direction: rtl; }
.content-split--reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .content-split { grid-template-columns: 1fr; gap: 40px; }
  .content-split--reverse { direction: ltr; }
}

.content-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.content-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.content-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(196,120,26,0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ── Emergency banner ── */
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
.emergency-banner {
  background: var(--copper);
  padding: 14px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
  max-height: 300px;
}
.emergency-banner.is-dismissed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .emergency-banner {
    padding: 12px 48px 12px 16px;
    gap: 10px;
    justify-content: flex-start;
    text-align: left;
  }
  .emergency-banner__dot { display: none; }
  .emergency-banner__close {
    position: absolute;
    top: 10px;
    right: 10px;
    margin-left: 0;
  }
}
.emergency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.06) 10px,
    rgba(0,0,0,0.06) 12px
  );
  pointer-events: none;
}
.emergency-banner__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
  animation: live-pulse 1.5s ease-in-out infinite;
  position: relative;
}
.emergency-banner__text {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.emergency-banner a {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: underline;
  white-space: nowrap;
}
.emergency-banner__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 4px;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}
.emergency-banner__close:hover { color: var(--white); }

/* ── Page section intro ── */
.section-intro {
  margin-bottom: 56px;
}
.section-intro--center { text-align: center; }
.section-intro p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 12px;
}
.section-intro--center p { margin-left: auto; margin-right: auto; }

/* ── Animate on scroll ── */
.anim-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.anim-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim-scale.in-view {
  opacity: 1;
  transform: scale(1);
}
