/* ==========================================================================
   Fencing Company Chesterfield — Design System
   Mobile-first · Breakpoints: 768px (tablet), 1024px (desktop)
   ========================================================================== */

:root {
  --accent:        #bbaf81;
  --accent-dark:   #a89d74;
  --dark:          #1a1a1a;
  --dark-mid:      #2c2c2c;
  --grey:          #4a4a4a;
  --grey-mid:      #888888;
  --light:         #f5f5f5;
  --white:         #ffffff;

  --font-heading:  'Saira Semi Condensed', sans-serif;
  --font-body:     'Saira', sans-serif;

  --radius:        6px;
  --shadow:        0 2px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg:     0 8px 32px rgba(0, 0, 0, 0.18);
  --transition:    0.2s ease;

  --bar-height-desktop: 64px;
  --bar-height-mobile:  110px;

  --container:     1200px;
  --gap:           1.5rem;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey);
  background: var(--white);
  padding-bottom: var(--bar-height-mobile);
}

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

a {
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

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

.section--dark {
  background: var(--dark-mid);
  color: var(--light);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section__header p {
  color: var(--grey-mid);
  font-size: 1.0625rem;
}

.section--dark .section__header p {
  color: rgba(255, 255, 255, 0.75);
}

.section__cta {
  text-align: center;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--dark);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn--dark:hover {
  background: var(--dark-mid);
  border-color: var(--dark-mid);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn--block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Sticky Bottom Bar
   -------------------------------------------------------------------------- */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--accent);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

.sticky-bar__trust {
  display: none;
}

.sticky-bar__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.sticky-bar__actions .btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
}

.sticky-bar__actions .btn--dark {
  background: var(--dark);
}

/* --------------------------------------------------------------------------
   Topbar
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}

.topbar__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}

.topbar a {
  color: var(--accent);
  font-weight: 600;
}

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

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.header__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}

.header__logo-text span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header__nav {
  display: none;
}

.header__nav ul {
  display: flex;
  gap: 1.75rem;
}

.header__nav a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
}

.header__nav a:hover,
.header__nav a.is-active {
  color: var(--accent-dark);
}

.header__actions {
  display: none;
}

.header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  color: var(--dark);
}

.header__phone-icon svg {
  width: 20px;
  height: 20px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Mobile Nav
   -------------------------------------------------------------------------- */

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 5rem 1.5rem 8rem;
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--light);
  color: var(--dark);
}

.mobile-nav__cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.65) 100%);
}

.hero--short {
  min-height: 50vh;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 720px;
}

.hero--with-form {
  min-height: auto;
}

.hero--with-form .hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  align-items: start;
}

.hero--with-form .hero__content {
  padding: 0;
  max-width: none;
}

.hero__form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
  padding: 1.25rem 1.25rem 0.75rem;
  color: var(--dark);
}

.hero__form-card h2 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.hero__form-card p {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin-bottom: 0.875rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero__subtext {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.quote-footer {
  background: var(--dark);
  padding: 2rem 0 0;
}

.quote-footer__header {
  text-align: center;
  margin-bottom: 1rem;
}

.quote-footer__header h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.quote-footer__header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.quote-footer__header a {
  color: var(--accent);
  font-weight: 600;
}

.quote-footer__header a:hover {
  color: var(--white);
}



.quote-footer__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.form-box--standalone {
  margin: 0;
}

.form-box iframe,
.tally-embed {
  display: block;
  width: 100%;
  border: 0;
  vertical-align: top;
}

/* --------------------------------------------------------------------------
   Stats Bar
   -------------------------------------------------------------------------- */

.stats-bar {
  background: var(--accent);
  padding: 1.25rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.stat-item__label {
  font-size: 0.8125rem;
  color: var(--dark);
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   Services Grid
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.service-card__body {
  padding: 1.25rem;
}

.service-card__body h3 {
  margin-bottom: 0.5rem;
}

.service-card__body p {
  font-size: 0.9375rem;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

.service-card__link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--accent-dark);
}

.service-card__link:hover {
  color: var(--dark);
}

/* --------------------------------------------------------------------------
   Why Choose Us
   -------------------------------------------------------------------------- */

.why-us {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.why-us__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-us__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: var(--radius);
  color: var(--dark);
}

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

.feature-item h3 {
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.9375rem;
  color: var(--grey-mid);
}

/* --------------------------------------------------------------------------
   How It Works / Process Steps
   -------------------------------------------------------------------------- */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.step-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.section--light .step-card {
  background: var(--white);
}

.section--dark .step-card {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--grey-mid);
}

.section--dark .step-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   Areas Grid / Chips
   -------------------------------------------------------------------------- */

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.area-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.section--dark .area-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section--dark .area-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.section--light .testimonial-card {
  background: var(--white);
}

.section--dark .testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--accent);
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--grey);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.section--dark .testimonial-card__text {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.section--dark .testimonial-card__author {
  color: var(--white);
}

.testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--grey-mid);
}

/* --------------------------------------------------------------------------
   Map Section
   -------------------------------------------------------------------------- */

.map-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.map-section__info h2 {
  margin-bottom: 1rem;
}

.contact-block {
  margin-bottom: 1.5rem;
}

.contact-block h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-mid);
  margin-bottom: 0.375rem;
}

.contact-block p,
.contact-block a {
  font-size: 1rem;
  color: var(--dark);
}

.contact-block a:hover {
  color: var(--accent-dark);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   Contact Page Layout
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
}

.contact-trust-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-phone-cta {
  margin-bottom: 1.5rem;
}

.form-box {
  background: var(--light);
  padding: 1.5rem 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-box h2 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.form-box__subtext {
  font-size: 0.9375rem;
  color: var(--grey-mid);
  margin-bottom: 1.25rem;
}

.section.quote-convert {
  background: var(--light);
}

.quote-convert__content h2 {
  margin-bottom: 1rem;
}

.quote-convert__content p {
  margin-bottom: 1rem;
  max-width: 52ch;
}

.quote-convert__content .btn {
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   Benefits Grid (Service Pages)
   -------------------------------------------------------------------------- */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.benefit-card {
  padding: 1.25rem;
  background: var(--light);
  border-radius: var(--radius);
}

.benefit-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.benefit-card__icon svg {
  width: 20px;
  height: 20px;
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--grey-mid);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent-dark);
}

.faq-item.is-open .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: none;
  padding: 0 0 1.125rem;
  font-size: 0.9375rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */

.cta-band {
  background: var(--dark);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */

.breadcrumbs {
  padding: 0.875rem 0;
  background: var(--light);
  font-size: 0.8125rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--grey-mid);
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: var(--grey-mid);
}

.breadcrumbs a {
  color: var(--grey);
}

.breadcrumbs a:hover {
  color: var(--accent-dark);
}

/* --------------------------------------------------------------------------
   Content Prose (Service / Area / About pages)
   -------------------------------------------------------------------------- */

.content-prose {
  max-width: 800px;
}

.content-prose--wide {
  max-width: none;
}

.content-prose p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.content-prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-prose ul li {
  margin-bottom: 0.375rem;
  line-height: 1.6;
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 0;
}

.footer--flush {
  padding-top: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer__nap {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer__nap a {
  color: var(--accent);
}

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

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer ul a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a {
  color: var(--accent);
}

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

/* --------------------------------------------------------------------------
   Page Hero Variants (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  background: var(--dark-mid);
  padding: 3rem 0;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero__subtext {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.page-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-hero--image {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 0;
  min-height: 45vh;
  display: flex;
  align-items: center;
}

.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.page-hero--image .container {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem;
}

/* --------------------------------------------------------------------------
   Visually Hidden (Accessibility)
   -------------------------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Tablet — 768px+
   -------------------------------------------------------------------------- */

@media (min-width: 768px) {
  body {
    padding-bottom: var(--bar-height-desktop);
  }

  .section {
    padding: 4.5rem 0;
  }

  .topbar__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

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

  .map-section {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .hero--with-form .hero__layout {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 4rem 0;
  }

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

  .sticky-bar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
  }

  .sticky-bar__trust {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
  }

  .sticky-bar__trust span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
  }

  .sticky-bar__trust svg {
    width: 16px;
    height: 16px;
  }

  .sticky-bar__actions {
    flex-direction: row;
    width: auto;
    gap: 0.75rem;
  }

  .sticky-bar__actions .btn {
    width: auto;
    white-space: nowrap;
  }
}

/* --------------------------------------------------------------------------
   Desktop — 1024px+
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .header__actions .header__phone {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark);
    white-space: nowrap;
  }

  .header__actions .header__phone:hover {
    color: var(--accent-dark);
  }

  .header__mobile-actions {
    display: none;
  }

  .why-us {
    grid-template-columns: 1fr 1fr;
  }

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

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .content-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

