/* Parkin Property & Roofing Services */

:root {
  --red: #c8102e;
  --red-dark: #a00d24;
  --navy: #1b365d;
  --navy-dark: #0f2340;
  --text: #2c3340;
  --text-light: #5c6675;
  --bg-light: #f3f5f8;
  --white: #ffffff;
  --shadow: 0 1px 2px rgba(15, 35, 64, 0.06), 0 8px 24px rgba(15, 35, 64, 0.08);
  --shadow-raised: 0 2px 4px rgba(15, 35, 64, 0.08), 0 16px 40px rgba(15, 35, 64, 0.14);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  --radius: 6px;
  --max-width: 1140px;
  /* Local system stack only: no third-party font CDN (avoids IP transfer without consent) */
  --font: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Avenir Next Condensed", "Avenir Next", "Segoe UI Semibold", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--red);
}

ul {
  list-style: none;
}

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

/* Header trust badge */
.header-trust-item {
  margin-left: 12px;
  flex-shrink: 0;
}

.main-nav > ul > li > a.header-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  padding: 8px 10px;
  line-height: 1;
  border-radius: var(--radius);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  white-space: nowrap;
}

.main-nav > ul > li > a.header-trust:hover {
  background: var(--bg-light);
  color: var(--navy);
}

.header-trust-score {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.header-trust-item .header-trust img {
  height: 28px;
  width: 28px;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}

.header-trust-rating {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  white-space: nowrap;
  padding: 3px 7px;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  line-height: 1.2;
}

.header-trust-stars {
  color: #ffc107;
  font-size: 0.7rem;
  letter-spacing: 1px;
  line-height: 1;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 35, 64, 0.06), 0 8px 24px rgba(15, 35, 64, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  max-height: 70px;
  width: auto;
  max-width: none;
}

.main-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.main-nav > ul {
  display: flex;
  gap: 4px;
  align-items: center;
  width: auto;
  justify-content: flex-end;
}

.main-nav > ul > li > a {
  display: block;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  border-radius: var(--radius);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  background: var(--red);
  color: var(--white);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle .chevron {
  font-size: 0.7rem;
  line-height: 1;
}

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 0;
  max-width: min(100vw - 40px, 360px);
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--navy);
  z-index: 200;
  padding: 8px 0;
  list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu li {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  border-radius: 0;
  font-weight: 600;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--navy);
}

.nav-dropdown > a.active {
  background: var(--red);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  padding: 72px 0 80px;
  text-align: center;
  background-color: var(--navy-dark);
  background-image:
    linear-gradient(160deg, rgba(15, 35, 64, 0.88) 0%, rgba(27, 54, 93, 0.72) 55%, rgba(15, 35, 64, 0.9) 100%),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(to bottom, transparent 70%, rgba(15, 35, 64, 0.35));
  pointer-events: none;
  z-index: 0;
}

.hero .container,
.hero-inner {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 700;
  margin: 0 auto 18px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero h1 strong {
  font-weight: 700;
  font-style: normal;
}

.hero .subtitle {
  font-size: 1.12rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 620px;
  margin: 0 auto 22px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  padding: 15px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    var(--shadow-inset),
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(200, 16, 46, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-inset),
    0 14px 28px rgba(200, 16, 46, 0.4);
}

.hero-cta:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-inset), 0 4px 12px rgba(200, 16, 46, 0.3);
}

.hero-cta--secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.hero-cta--trust {
  gap: 8px;
}

.hero-cta--trust .hero-trust-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-cta--trust .stars {
  color: #ffc107;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-cta--trust strong {
  font-weight: 700;
}

/* Legacy badge classes kept for safety if referenced elsewhere */
.hero-trust,
.hero-badges,
.hero-badge,
.trust-badge {
  display: none;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.section-title p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 16px auto 0;
}

/* Intro content */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-text p {
  margin-bottom: 16px;
  color: var(--text);
}

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

.intro-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.intro-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.intro-logo img {
  width: auto;
  height: auto;
  max-width: min(100%, 320px);
  max-height: none;
  object-fit: contain;
  display: block;
}

.services-list li[id] {
  scroll-margin-top: 120px;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 54, 93, 0.06);
  transform: perspective(900px) rotateX(0deg) translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: perspective(900px) rotateX(2deg) translateY(-6px);
  box-shadow: var(--shadow-raised);
  border-color: rgba(27, 54, 93, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  box-shadow:
    0 1px 2px rgba(15, 35, 64, 0.12),
    0 10px 22px rgba(15, 35, 64, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6em;
  width: 100%;
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.service-card p {
  flex: 1;
  width: 100%;
  margin: 0;
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.5;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.service-card h3 a:hover {
  color: var(--red);
}

.service-card {
  cursor: default;
}

.service-card:has(h3 a) {
  cursor: pointer;
}

.service-card:has(h3 a):focus-within {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

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

.services-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid #e8ecf0;
}

.services-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* Service detail pages */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  border: 1px solid rgba(27, 54, 93, 0.08);
  transform: perspective(1000px) rotateY(-1deg);
}

.service-detail-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-detail-content h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin: 24px 0 12px;
}

.service-detail-content h2:first-child {
  margin-top: 0;
}

.service-detail-content p {
  margin-bottom: 16px;
  color: var(--text);
}

.service-tagline {
  text-align: center;
  font-style: italic;
  color: var(--navy);
  margin-top: 24px;
  font-size: 1.05rem;
}

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

  .service-detail-image {
    transform: none;
  }

  .service-detail-image img {
    height: 260px;
  }
}

/* Why choose us */
.why-choose {
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 40px;
  align-items: stretch;
}

.why-choose-photo {
  display: flex;
  min-height: 100%;
}

.why-choose-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-raised);
  background: var(--bg-light);
  display: block;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.why-choose-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
}

.why-choose-title h2 {
  margin-bottom: 0;
}

.why-choose-title::after {
  margin-left: 0;
  margin-right: auto;
}

.why-choose .why-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  flex: 1;
}

@media (max-width: 900px) {
  .why-choose {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
    margin: 0 auto;
    align-items: start;
  }

  .why-choose-photo {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
    min-height: 0;
  }

  .why-choose-photo img {
    min-height: 0;
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .why-choose-title {
    text-align: center;
  }

  .why-choose-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Work Gallery marquee */
.work-gallery-section {
  overflow: hidden;
  padding-bottom: 40px;
  background: var(--white);
}

.work-gallery-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 8px;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.work-gallery-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: work-gallery-scroll 45s linear infinite;
  will-change: transform;
}

.work-gallery-marquee:hover .work-gallery-track {
  animation-play-state: paused;
}

.work-gallery-item {
  flex: 0 0 clamp(240px, 28vw, 320px);
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 54, 93, 0.06);
}

.work-gallery-item img {
  width: 100%;
  height: clamp(160px, 20vw, 210px);
  object-fit: cover;
  display: block;
}

.work-gallery-item figcaption {
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

.work-gallery-cta {
  text-align: center;
  margin-top: 28px;
}

@keyframes work-gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* FAQ */
.faq-section {
  background: var(--bg-light);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(27, 54, 93, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--bg-light);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .work-gallery-item {
    flex-basis: min(78vw, 280px);
  }

  .work-gallery-item img {
    height: 170px;
  }

  .work-gallery-track {
    gap: 12px;
    animation-duration: 38s;
  }

  .work-gallery-marquee {
    mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent);
  }

  .faq-item summary {
    min-height: 52px;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-gallery-track {
    animation: none;
  }

  .work-gallery-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 54, 93, 0.06);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-raised);
}

.why-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(160deg, #254a78 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 10px rgba(15, 35, 64, 0.25);
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal--delay-1 { transition-delay: 0.1s; }
.scroll-reveal--delay-2 { transition-delay: 0.2s; }
.scroll-reveal--delay-3 { transition-delay: 0.3s; }
.scroll-reveal--delay-4 { transition-delay: 0.4s; }
.scroll-reveal--delay-5 { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card,
  .service-card:hover,
  .testimonial,
  .testimonial-link:hover,
  .why-item,
  .why-item:hover,
  .btn,
  .btn:hover,
  .hero-cta,
  .hero-cta:hover {
    transform: none;
    transition: none;
  }
}

/* Testimonials */
.section-title--reviews p {
  max-width: none;
  white-space: nowrap;
}

.testimonials-cta {
  text-align: center;
  margin-top: 32px;
}

.testimonials-cta .btn {
  margin-top: 0;
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 54, 93, 0.06);
  border-left: 4px solid var(--red);
  transform: perspective(900px) rotateX(0deg) translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.testimonial-link:hover {
  transform: perspective(900px) rotateX(1.5deg) translateY(-5px);
  box-shadow: var(--shadow-raised);
}

.testimonial-link:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.testimonial .stars {
  color: #ffc107;
  margin-bottom: 12px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial blockquote {
  flex: 1;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.7;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e8ecf0;
}

.testimonial .source {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(160deg, #d91a38 0%, var(--red) 45%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 65%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.cta-band p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta-band .phone {
  font-size: 1.5rem;
  font-weight: 700;
}

.cta-band a {
  color: var(--white);
}

.cta-band a:hover {
  text-decoration: underline;
}

.cta-band a.btn:hover {
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--red);
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  border-radius: var(--radius);
  margin-top: 16px;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--bg-light);
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-raised);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: var(--shadow);
}

.btn-gold,
.btn-gold:hover,
.btn-gold:active,
.btn-gold:focus {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-raised);
}

.btn-navy {
  background: linear-gradient(160deg, #254a78 0%, var(--navy) 100%);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(15, 35, 64, 0.28);
}

.btn-navy:hover {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}

.btn-red {
  background: linear-gradient(160deg, #d91a38 0%, var(--red) 100%);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(200, 16, 46, 0.3);
}

.btn-red:hover {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--bg-light);
  box-shadow: var(--shadow);
}

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

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

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--white);
  padding: 24px 14px 12px;
  font-size: 0.9rem;
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #e8ecf0, #d5dce6);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h3 {
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 3px;
}

.contact-detail strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-coverage {
  margin-top: 24px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-coverage a {
  color: var(--navy);
  font-weight: 500;
}

.contact-coverage a:hover {
  color: var(--red);
}

.contact-form {
  background: var(--bg-light);
  padding: 32px;
  border-radius: var(--radius);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccd3dc;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group--honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
  margin: 0;
}

.form-group--consent {
  margin-top: 4px;
  margin-bottom: 8px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--navy);
}

.consent-label a {
  text-decoration: underline;
}

.form-consent {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.45;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}

.form-status--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-status--error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* About page */
.about-page-body .container {
  width: 100%;
}

.about-page-intro > p {
  margin-bottom: 18px;
  color: var(--text);
  text-align: center;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.about-page-intro > p:last-of-type {
  margin-bottom: 0;
}

.about-section-heading {
  margin-top: 40px;
  margin-bottom: 28px;
}

.about-team {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 32px;
  align-items: center;
  margin: 8px 0 8px;
}

.about-team-photo {
  margin: 0;
}

.about-team-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--bg-light);
}

.about-team-content h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.45rem;
  margin: 0 0 12px;
}

.about-team-content p {
  margin-bottom: 14px;
  color: var(--text);
}

.about-team-content p:last-child {
  margin-bottom: 0;
}

.about-reviews-grid {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .about-team {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .about-team-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-team-content h3 {
    font-size: 1.3rem;
  }
}

.about-page .about-why-grid {
  gap: 24px;
}

.about-page .about-why-grid .why-item {
  border-top: 4px solid var(--red);
  padding: 24px;
}

.about-page .section-title p,
.about-page .areas-note,
.about-page .page-header p {
  max-width: none;
}

.about-page .trustatrader-block {
  width: 100%;
  margin: 48px 0 0;
}

.about-page-body .section-title:not(.about-section-heading) {
  margin-top: 56px;
}

/* Areas coverage */
.locations-page-body {
  padding-top: 32px;
}

.coverage-map-wrap {
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e8ecf0;
}

.coverage-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.areas-region {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.areas-region-body h3 a {
  color: inherit;
  text-decoration: none;
}

.areas-region-body h3 a:hover {
  color: var(--red);
}

.hub-region-map {
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}

.hub-region-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-hub-towns {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.location-hub-towns a {
  color: var(--navy);
  font-weight: 500;
}

.location-hub-towns a:hover {
  color: var(--red);
}

@media (max-width: 768px) {
  .location-hub-towns {
    grid-template-columns: 1fr;
  }
}

.areas-region-body {
  padding: 24px 28px 28px;
  border-top: 4px solid var(--red);
}

.areas-region h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8ecf0;
}

.areas-region ul {
  list-style: none;
  columns: 2;
  column-gap: 20px;
}

.areas-region li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  break-inside: avoid;
}

.areas-region li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* Location landing pages */
.location-page {
  max-width: 900px;
}

.location-intro p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.location-services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.location-services-list a {
  display: block;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}

.location-services-list a:hover {
  background: var(--navy);
  color: var(--white);
}

.location-nearby {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #e8ecf0;
}

.location-nearby h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.location-nearby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.location-nearby-link {
  display: inline-block;
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  border: 1px solid #dde3ea;
}

.location-nearby-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.location-nearby-all {
  margin-top: 16px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .location-services-list {
    grid-template-columns: 1fr;
  }
}

.areas-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

  .coverage-map-wrap {
    height: 300px;
  }

  .areas-region ul {
    columns: 1;
  }
}

/* TrustATrader block */
.trustatrader-block {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
  margin: 48px 0 0;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--navy);
}

.trustatrader-logo {
  flex-shrink: 0;
  width: 140px;
}

.trustatrader-logo img {
  width: 100%;
  height: auto;
}

.trustatrader-content h3 {
  color: var(--navy);
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.trustatrader-content p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.trustatrader-rating {
  display: inline-block;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.trustatrader-rating .stars {
  color: #ffc107;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 36px;
}

.about-cta .btn {
  margin: 0;
}

@media (max-width: 600px) {
  .trustatrader-block {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .trustatrader-logo {
    width: 120px;
  }
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #c8d4e0;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 36px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  color: var(--white);
  margin: 0 0 18px;
  min-height: 2.5rem;
  display: flex;
  align-items: flex-end;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.footer-col p,
.footer-col li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col a {
  color: #c8d4e0;
}

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

.footer-menu li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #8fa3b8;
}

.footer-copy {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 12px;
}

.footer-bottom a,
.footer-legal a {
  color: #8fa3b8;
}

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

.footer-trust {
  margin-top: 16px;
}

.footer-trust-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c8d4e0;
}

.footer-trust-link:hover {
  color: var(--white);
}

.footer-trust-logo {
  flex-shrink: 0;
  height: 32px;
  width: auto;
}

.footer-trust-stars {
  color: #ffc107;
  font-size: 0.95rem;
  letter-spacing: 1px;
  line-height: 1;
}

/* Page header */
.page-header {
  background:
    linear-gradient(160deg, rgba(15, 35, 64, 0.96) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.page-header p a {
  color: var(--white);
}

.page-header p a:hover {
  color: #e8ecf0;
}

.page-header-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 22px auto 0;
  max-width: none;
  opacity: 1;
}

.page-header .btn-header-primary {
  background: linear-gradient(160deg, #d91a38 0%, var(--red) 100%);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(200, 16, 46, 0.3);
}

.page-header .btn-header-primary:hover {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}

.page-header .btn-header-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.page-header .btn-header-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.service-related-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 820px;
  margin: 0 auto 20px;
  list-style: none;
  text-align: center;
}

.service-related-list a {
  font-weight: 600;
  color: var(--navy);
}

.service-related-more {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .service-related-list {
    grid-template-columns: 1fr;
  }
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 12px;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--white);
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .intro-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials-grid,
  .why-grid,
  .services-list {
    grid-template-columns: 1fr;
  }

  .section-title--reviews p {
    white-space: normal;
  }

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

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

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    display: none;
  }

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

  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .main-nav > ul > li > a {
    padding: 14px 16px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    max-height: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--navy);
    margin: 0 0 8px 16px;
    padding: 4px 0;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open:hover .nav-dropdown-menu {
    display: block;
  }

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

/* Phone-first enhancements */
.location-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.location-cta-buttons .btn {
  margin-top: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .logo img {
    max-height: 52px;
  }

  .header-inner {
    padding: 10px 0;
    flex-wrap: wrap;
  }

  .header-trust-item {
    display: none;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .main-nav > ul > li > a,
  .nav-dropdown-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    padding: 44px 0 52px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
    max-width: none;
    line-height: 1.12;
  }

  .hero h1 strong,
  .section-title h2 strong,
  .page-header h1 strong,
  .page-header p strong,
  .cta-band h2 strong,
  .cta-band p strong {
    font-weight: inherit;
  }

  .hero .subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
    max-width: 34em;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-cta {
    display: flex;
    width: 100%;
    padding: 15px 18px;
    text-align: center;
  }

  .intro-logo {
    display: none;
  }

  .service-card {
    padding: 24px 18px;
  }

  .service-card:hover,
  .testimonial-link:hover,
  .why-item:hover {
    transform: translateY(-3px);
  }

  .section {
    padding: 36px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom p {
    line-height: 1.7;
    font-size: 0.82rem;
  }

  .btn,
  .hero-cta,
  .contact-form button[type="submit"] {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 20px;
  }

  .location-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .location-cta-buttons .btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .cta-band .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 12px auto 0;
    text-align: center;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    min-height: 48px;
    padding: 12px 14px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .breadcrumb {
    font-size: 0.8rem;
    line-height: 1.5;
    word-break: break-word;
  }

  .page-hero {
    padding: 32px 0 36px;
  }

  .page-hero h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
    line-height: 1.25;
  }

  .areas-region h3 {
    font-size: 1.1rem;
  }

  .areas-region ul li a {
    display: block;
    padding: 6px 0;
    min-height: 36px;
    line-height: 1.4;
  }

  .location-nearby-list a {
    display: inline-block;
    padding: 4px 0;
    min-height: 36px;
  }

  .intro-text {
    text-align: center;
  }

  .intro-text .btn {
    display: inline-flex;
    width: 100%;
    max-width: 360px;
    margin: 8px auto 0;
  }

  .about-cta {
    flex-direction: column;
    align-items: center;
  }

  .about-cta .btn {
    width: 100%;
    max-width: 360px;
  }

  /* Mobile footer: clean, compact, easy to scan */
  .site-footer {
    padding: 36px 0 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-bottom: 8px;
  }

  .footer-col {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    align-items: stretch;
    text-align: left;
  }

  .footer-col:nth-child(1) {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    padding: 0 0 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-col:nth-child(4) {
    display: none;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    padding: 16px 0 8px;
  }

  .footer-col h4 {
    justify-content: flex-start;
    min-height: 0;
    width: auto;
    margin: 0 0 10px;
    padding: 0;
    border: none;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.65);
  }

  .footer-col:nth-child(1) h4 {
    justify-content: center;
  }

  .footer-col:nth-child(1) p {
    margin-bottom: 8px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .footer-col:nth-child(1) a[href^="tel"],
  .footer-col:nth-child(1) a[href^="mailto"] {
    color: var(--white);
    font-weight: 600;
  }

  .footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-col:nth-child(2) .footer-menu,
  .footer-col:nth-child(3) .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-col:nth-child(4) .footer-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 0;
  }

  .footer-menu li {
    margin: 0;
  }

  .footer-col ul li a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 6px 0;
    border-radius: 0;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #d5dee8;
  }

  .footer-col ul li a:hover,
  .footer-col ul li a:active {
    background: transparent;
    color: var(--white);
  }

  .footer-trust {
    margin-top: 14px;
  }

  .footer-trust-link {
    justify-content: center;
    padding: 10px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: transparent;
  }

  .footer-bottom {
    margin-top: 8px;
    padding-top: 20px;
  }

  .footer-copy {
    font-size: 0.78rem;
    line-height: 1.5;
    max-width: 20rem;
    margin: 0 auto;
  }

  .footer-legal {
    margin-top: 14px;
    gap: 10px 0;
    flex-direction: column;
    align-items: center;
  }

  .footer-legal a {
    color: #a8b8c9;
    font-size: 0.82rem;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .services-grid .service-card h3 {
    font-size: 1.05rem;
  }

  .testimonials-grid blockquote {
    font-size: 0.95rem;
  }

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

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    grid-column: auto;
    padding: 12px 0 8px;
    border-bottom: none;
  }

  .footer-col h4 {
    margin-bottom: 6px;
  }

  .footer-col ul li a {
    min-height: 36px;
    font-size: 0.86rem;
    padding: 4px 0;
  }

  .site-footer {
    padding: 32px 0 20px;
  }
}

/* Legal pages */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--navy);
}

.legal-content p,
.legal-content li {
  color: var(--text);
  line-height: 1.7;
}

.legal-content ul {
  margin: 0.75rem 0 1rem 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--navy);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--red);
}

