/* =============================================================
   CELTIC PLUMBING & TILING — STYLESHEET
   Palette: #1e60aa (primary blue), #fff (white), #0d1b2e (dark navy text)
   Fonts: Rajdhani (headings), Arvo (accent/subheadings), Inter (body)
   ============================================================= */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1e60aa;
  --blue-dark:   #154d8a;
  --blue-light:  #2a78cc;
  --blue-pale:   #e8f0fa;
  --navy:        #0d1b2e;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --grey-light:  #eef1f6;
  --grey-mid:    #c0cad8;
  --grey-text:   #5a6a7e;
  --text:        #1a2535;
  --accent:      #f0a500;

  --font-head:   'Rajdhani', sans-serif;
  --font-serif:  'Arvo', serif;
  --font-body:   'Inter', sans-serif;

  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(30,96,170,0.10);
  --shadow-md:   0 6px 24px rgba(30,96,170,0.15);
  --shadow-lg:   0 16px 48px rgba(13,27,46,0.18);
  --transition:  0.25s ease;

  --max-w:       1200px;
  --max-w-text:  780px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
address { font-style: normal; }

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

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

.subtitle {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  display: block;
  margin-bottom: 0.6rem;
}

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

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

.container--narrow { max-width: var(--max-w-text); }

.section {
  padding: 80px 0;
}

.section--sm { padding: 48px 0; }
.section--lg { padding: 112px 0; }

.section--blue {
  background: var(--blue);
  color: var(--white);
}
.section--blue h1,
.section--blue h2,
.section--blue h3,
.section--blue h4,
.section--blue p { color: var(--white); }
.section--blue .subtitle { color: rgba(255,255,255,0.75); }

.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy p { color: var(--white); }
.section--navy .subtitle { color: rgba(255,255,255,0.6); }

.section--pale { background: var(--off-white); }
.section--grey { background: var(--grey-light); }

.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; gap: 24px; }
.flex--center { align-items: center; }
.flex--between { justify-content: space-between; }
.flex--wrap { flex-wrap: wrap; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--blue-pale);
  border-color: var(--blue-pale);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn--lg { padding: 18px 40px; font-size: 1.15rem; }
.btn--sm { padding: 10px 22px; font-size: 0.9rem; }

/* Arrow icon inside button */
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ----- HEADER ----- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,27,46,0.10);
  transition: box-shadow var(--transition);
  /* Needed so absolute-positioned mobile nav is relative to header */
  isolation: isolate;
}

.header-top {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-top a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-top a:hover { color: var(--white); }

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.header-main {
  padding: 16px 0;
  position: relative;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__icon {
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}

.site-logo__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-logo__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__name {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-logo__tagline {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  color: var(--blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: var(--blue-pale);
}

/* Dropdown */
.main-nav .has-dropdown {
  position: relative;
}

.main-nav .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.6;
  transition: transform var(--transition);
}

.main-nav .has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}

/* Invisible hover bridge — fills the gap between the trigger
   and the dropdown so the cursor doesn't exit the hover zone */
.main-nav .has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav .dropdown a {
  padding: 9px 14px;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius);
  white-space: nowrap;
}

.main-nav .dropdown a:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

/* On mobile, dropdowns show inline */
@media (max-width: 768px) {
  .main-nav .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--blue-pale);
    border-radius: 0;
    padding: 4px 0 4px 16px;
    margin: 4px 0 8px;
    background: transparent;
  }

  .main-nav .dropdown a {
    font-size: 0.9rem;
    color: var(--grey-text);
  }
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,46,0.92) 0%,
    rgba(13,27,46,0.75) 50%,
    rgba(30,96,170,0.45) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,96,170,0.3);
  border: 1px solid rgba(30,96,170,0.5);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1,
.hero h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }

.hero h1 span,
.hero h2 span { color: var(--blue-light); }

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ----- TRUST BAR ----- */
.trust-bar {
  background: var(--blue);
  padding: 20px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

/* ----- SECTION HEADERS ----- */
.section-header {
  margin-bottom: 56px;
}

.section-header--center { text-align: center; }

.section-header h2 { margin-top: 8px; margin-bottom: 16px; }

.section-header p {
  font-size: 1.05rem;
  color: var(--grey-text);
  max-width: 580px;
}

.section-header--center p { margin: 0 auto; }

/* ----- SERVICE CARDS ----- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--grey-light);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--blue);
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__text {
  color: var(--grey-text);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-top: auto;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* ----- WHY CHOOSE US ----- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image {
  position: relative;
  min-height: 520px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image__badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}

.why-image__badge-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.why-image__badge-label {
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-top: 4px;
}

.why-content {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-content .subtitle { color: rgba(255,255,255,0.6); }
.why-content h2 { color: var(--white); margin-bottom: 24px; }
.why-content p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-feature__icon {
  width: 40px;
  height: 40px;
  background: rgba(30,96,170,0.3);
  border: 1px solid rgba(30,96,170,0.5);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--blue-light);
}

.why-feature__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.why-feature__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ----- PROCESS STEPS ----- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(30,96,170,0.35);
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--grey-text);
}

/* ----- TESTIMONIALS ----- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

/* Row 1: 3 cards each span 2 of 6 cols */
.testimonials-grid .testimonial-card:nth-child(1),
.testimonials-grid .testimonial-card:nth-child(2),
.testimonials-grid .testimonial-card:nth-child(3) {
  grid-column: span 2;
}

/* Row 2: 2 cards each span 3 of 6 cols — fills row and centres */
.testimonials-grid .testimonial-card:nth-child(4),
.testimonials-grid .testimonial-card:nth-child(5) {
  grid-column: span 3;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-pale);
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card cite {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  font-style: normal;
}

.testimonial-card cite span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--grey-text);
  margin-top: 2px;
}

/* ----- AREAS SERVED ----- */
.areas-section {
  background: var(--off-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: all var(--transition);
}

.area-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

/* ----- EMERGENCY CTA BAND ----- */
.emergency-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.emergency-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.emergency-band .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.emergency-band__text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.emergency-band__text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin: 0;
}

.emergency-band__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  text-align: right;
}

.emergency-band__number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.emergency-band__number:hover { opacity: 0.85; color: var(--white); }

.emergency-band__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  margin-bottom: 16px;
}

/* ----- CONTACT FORM ----- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,96,170,0.12);
}

.form-control::placeholder { color: var(--grey-mid); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%235a6a7e' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-top: 16px;
  display: none;
}

.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  display: block;
}

.form-message--error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
  display: block;
}

/* Contact info block */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.contact-info-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-text);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.contact-info-item a:hover { color: var(--blue); }

/* ----- GALLERY GRID ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,96,170,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* Gallery wide items */
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

/* ----- PAGE TITLE BANNER ----- */
.page-banner {
  background: linear-gradient(105deg, var(--navy) 0%, var(--blue-dark) 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-banner .subtitle { color: rgba(255,255,255,0.6); }
.page-banner h1 { color: var(--white); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ----- FOOTER ----- */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .site-logo__name { color: var(--white); }
.footer-brand .site-logo__tagline { color: rgba(255,255,255,0.5); }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 20px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover { background: var(--blue); }

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
}

.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--white); }

/* ----- MAP SECTION ----- */
.map-section {
  height: 380px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%);
}

/* ----- BACK TO TOP ----- */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border: none;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ----- LIGHTBOX ----- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13,27,46,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__close svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ----- ANIMATIONS ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.55s ease both;
}

.fade-up--d1 { animation-delay: 0.1s; }
.fade-up--d2 { animation-delay: 0.2s; }
.fade-up--d3 { animation-delay: 0.3s; }
.fade-up--d4 { animation-delay: 0.4s; }

/* Intersection observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-content { padding: 48px 40px; }
}

@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .section--lg { padding: 80px 0; }

  .grid--3 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }

  .why-grid { grid-template-columns: 1fr; }
  .why-image { min-height: 360px; }
  .why-content { padding: 48px 36px; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:nth-child(1),
  .testimonials-grid .testimonial-card:nth-child(2),
  .testimonials-grid .testimonial-card:nth-child(3),
  .testimonials-grid .testimonial-card:nth-child(4),
  .testimonials-grid .testimonial-card:nth-child(5) { grid-column: span 1; }

  .form-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }

  .header-top { display: none; }

  .main-nav { 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 16px 24px 24px;
    display: none;
    border-top: 1px solid var(--grey-light);
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a { padding: 12px 16px; font-size: 1.05rem; }

  .nav-toggle { display: flex; }

  /* Shrink logo text so hamburger stays on screen */
  .site-logo__name { font-size: 0.95rem; }
  .site-logo__tagline { font-size: 0.6rem; letter-spacing: 0.08em; }
  .site-logo__icon { width: 44px; height: 44px; }

  .header-cta .btn { display: none; }
  .header-cta .btn--emergency {
    display: inline-flex;
    font-size: 0.82rem;
    padding: 10px 12px;
    white-space: nowrap;
  }

  .header-main .container { gap: 12px; }
  .header-main { padding: 12px 0; }

  /* Hero badge — fits on one line at mobile */
  .hero__badge { font-size: 0.68rem; padding: 5px 12px; letter-spacing: 0.06em; }

  .hero { min-height: 75vh; }
  .hero__stats { gap: 24px; }

  .trust-bar .container { gap: 20px; }
  .trust-item { font-size: 0.9rem; }

  .grid--2 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:nth-child(1),
  .testimonials-grid .testimonial-card:nth-child(2),
  .testimonials-grid .testimonial-card:nth-child(3),
  .testimonials-grid .testimonial-card:nth-child(4),
  .testimonials-grid .testimonial-card:nth-child(5) { grid-column: span 1; }

  .emergency-band .container { grid-template-columns: 1fr; text-align: center; }
  .emergency-band__phone { align-items: center; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }

  .process-steps { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .btn--lg { padding: 14px 28px; font-size: 1rem; }
  .hero__actions { flex-direction: column; }

  .grid--4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  #back-to-top { bottom: 20px; right: 20px; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   ABOUT PAGE
   ============================================================= */

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.about-intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-intro-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}

.about-intro-badge__number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.about-intro-badge__label {
  font-size: 0.78rem;
  color: var(--grey-text);
  margin-top: 4px;
  line-height: 1.4;
}

/* Prose — rich text from Umbraco */
.prose p { color: var(--text); margin-bottom: 1rem; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--blue); text-decoration: underline; }
.prose strong { font-weight: 600; }
.prose ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.4rem; color: var(--text); }

/* USPs */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.usp-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}

.usp-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.usp-item__icon {
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}

.usp-item__icon svg { width: 26px; height: 26px; }

.usp-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.usp-item p {
  font-size: 0.9rem;
  color: var(--grey-text);
  margin: 0;
}

/* Services list */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.services-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
}

.services-list-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.services-list-item__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.services-list-item__icon svg { width: 22px; height: 22px; }

.services-list-item__text { flex: 1; }

.services-list-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.services-list-item p {
  font-size: 0.875rem;
  color: var(--grey-text);
  margin: 0;
  line-height: 1.5;
}

.services-list-item__arrow {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.services-list-item:hover .services-list-item__arrow {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-image { max-height: 420px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .services-list-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */

/* Emergency highlight box */
.contact-emergency-box {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 28px;
}

.contact-emergency-box__inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--white);
}

.contact-emergency-box__inner svg { flex-shrink: 0; margin-top: 2px; }

.contact-emergency-box__inner strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-emergency-box__inner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* Google reviews badge */
.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-decoration: none;
  transition: all var(--transition);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.google-reviews-badge:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  color: var(--blue);
}

.google-reviews-badge__stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:has(.faq-answer:not([hidden])) {
  border-color: var(--blue);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--blue); }

.faq-question[aria-expanded="true"] { color: var(--blue); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--grey-text);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--grey-text);
  line-height: 1.7;
  margin: 0;
}

.faq-answer a { color: var(--blue); text-decoration: underline; }

/* =============================================================
   SERVICE PAGE LAYOUT
   ============================================================= */

.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

/* Main column */
.service-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 56px;
}

.service-description h2 { margin: 2rem 0 1rem; font-size: 1.6rem; }
.service-description h3 { margin: 1.5rem 0 0.75rem; font-size: 1.3rem; }
.service-description p  { margin-bottom: 1rem; }
.service-description ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.service-description ul li { margin-bottom: 0.5rem; }
.service-description a  { color: var(--blue); text-decoration: underline; }
.service-description strong { font-weight: 600; }

/* Gallery */
.service-gallery-section { margin-bottom: 56px; }

.service-gallery-heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Areas section */
.service-areas {
  margin-bottom: 48px;
  padding: 36px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.service-areas h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-areas p {
  font-size: 0.95rem;
  color: var(--grey-text);
  margin-bottom: 20px;
}

.areas-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 0;
}

.areas-grid--compact .area-tag {
  font-size: 0.85rem;
  padding: 8px 12px;
}

/* Inline testimonial */
.service-testimonial {
  margin-bottom: 48px;
}

.service-testimonial__inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.service-testimonial__inner::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
}

.service-testimonial blockquote {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 12px 0 20px;
}

.service-testimonial cite {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  font-style: normal;
}

.service-testimonial cite span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-left: 6px;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: calc(80px + 24px); /* header height + gap */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-cta {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}

.sidebar-cta h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.sidebar-cta .btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.sidebar-cta .btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: none;
}

.sidebar-trust {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
}

.sidebar-trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--blue);
  flex-shrink: 0;
}

.sidebar-services {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-services h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-text);
  margin-bottom: 14px;
}

.sidebar-services ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all var(--transition);
}

.sidebar-services a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.sidebar-services a svg:first-child {
  width: 16px;
  height: 16px;
  fill: var(--blue);
  flex-shrink: 0;
}

.sidebar-services a .arrow {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: var(--grey-mid);
  fill: none;
  transition: transform var(--transition);
}

.sidebar-services a:hover .arrow {
  color: var(--blue);
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 960px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sidebar-cta { grid-column: 1 / -1; }

  .service-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .service-sidebar {
    grid-template-columns: 1fr;
  }

  .service-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-areas { padding: 24px; }
  .service-testimonial__inner { padding: 24px; }
}

/* =============================================================
   GALLERY PAGE
   ============================================================= */

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.gallery-filter {
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: 100px;
  padding: 9px 22px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.gallery-filter.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Full gallery grid */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.full-gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--grey-light);
}

.full-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.full-gallery-item:hover img {
  transform: scale(1.06);
}

.full-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,46,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}

.full-gallery-item:hover .full-gallery-item__overlay {
  opacity: 1;
}

.full-gallery-item__overlay svg {
  width: 28px;
  height: 28px;
}

.full-gallery-item__overlay span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 12px;
}

/* Hide/show filtered items */
.full-gallery-item.hidden {
  display: none;
}

.gallery-empty {
  text-align: center;
  padding: 48px;
  color: var(--grey-text);
  font-size: 1rem;
}

/* Privacy policy prose */
.prose--page {
  max-width: 720px;
  margin: 0 auto;
}

.prose--page h2 {
  font-size: 1.45rem;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-light);
}

.prose--page h2:first-of-type { margin-top: 1.5rem; }

.prose--page p,
.prose--page li {
  font-size: 0.98rem;
  color: var(--grey-text);
  line-height: 1.75;
}

.prose--page ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.prose--page ul li { margin-bottom: 0.4rem; }

.prose--page a {
  color: var(--blue);
  text-decoration: underline;
}

.prose--page strong { color: var(--navy); }

/* Responsive gallery */
@media (max-width: 900px) {
  .full-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .full-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-filters { gap: 6px; }
  .gallery-filter { font-size: 0.85rem; padding: 7px 16px; }
}
