@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

:root {
  --brand-main: #5C4033;      /* Rich earthy brown, replaces deep blue */
  --brand-deep: #3E2F22;      /* Darker brown for depth, replaces darker navy */
  --accent-color: #E6B45C;    /* Warm golden yellow, replaces bright yellow */
  --secondary-color: #7C9A6D; /* Muted green, replaces coral */
  --light-bg: #F5F0E6;        /* Soft off-white, replaces cool light gray */
  --border-color: #D8C9B5;    /* Light tan border, replaces pale gray */
  --text-main: #3E2F22;       /* Matches brand-deep for readability */
  --text-light: #1f281c;      /* Subtle greenish text accent */
  --radius: 10px;
  --shadow: 0 8px 25px rgba(0,0,0,.08);
}
/* GLOBAL RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:'Inter', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1.125rem;
  letter-spacing: .01em;
  color: var(--text-main);
  background:
    radial-gradient(circle at 20% 0%, #f3f7fb 0%, transparent 40%),
    radial-gradient(circle at 80% 100%, #f5f8fc 0%, transparent 40%),
    #ffffff;
}


p {
  line-height: 1.8;               /* slightly taller for readability */
  margin-bottom: clamp(18px, 2vw, 28px); /* more breathing room */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}


h1,h2,h3, h4 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  margin-bottom: clamp(18px, 2.2vw, 32px);
  line-height: 1.25;
}

h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 24px); }

h1 + p, h2 + p, h3 + p, h4 + p {
  margin-top: clamp(12px, 1.5vw, 20px);
  margin-bottom: clamp(20px, 2vw, 28px);
}

/* Lists */
ul, ol {
  margin-bottom: clamp(18px, 2vw, 28px);
  padding-left: 1.5em;
  line-height: 1.75;
}

li {
  margin-bottom: clamp(8px, 1vw, 14px);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
   height: auto;
}


a {
  color: var(--brand-main);
  text-decoration: none;

  
}

/* keep normal links colored on hover */
a:not(.btn):hover {
  color: var(--accent-color);
}


p a, li a, dd a {
  text-decoration: underline;
  text-decoration-color: var(--brand-main);
  text-decoration-thickness: 1.5px;
}


.shell {
  max-width: 1180px;
  margin: auto;
   width:min(100%,1180px);
  padding-inline: clamp(24px,4vw,40px);
}

.section {
      padding: clamp(60px, 8vw, 120px) 0;
}

.section h2 {
  margin-bottom: clamp(14px, 2vw, 20px);
}

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

.section-lead {
  color: var(--text-light);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.section + .section {
  position: relative;

}

.section + .section::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  opacity: .75;
}



/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 15px;
  background: var(--brand-main);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus-visible {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 15px;
  background: var(--brand-main);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
}

/* FAQ SECTION SPACING */
.faq-list dt {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: clamp(24px, 3vw, 34px);
  margin-bottom: 8px;
  color: var(--brand-main);
}

.faq-list dd {
  margin-bottom: clamp(18px, 2vw, 26px);
  line-height: 1.75;
  color: var(--text-light);
  max-width: 720px;
}

/* FAQ SECTION STYLES */
.faq-answer {
  display: none;
  padding: 0.5em 1em;
  border-left: 3px solid var(--accent-color);
  margin-bottom: 1em;
  transition: all 0.3s ease;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  margin: 0.5em 0;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

/* HEADER */
.top-bar {
  background: white;
  position: relative;
  z-index: 20; /* keep above trust strip */
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.brand-block {
  display: flex;
  flex-direction: column;
}

.brand-block__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  margin-left: clamp(8px, 1.5vw, 18px);
}

.brand-logo { width: 40px;}

.brand-block__tagline {
  font-size: 13px;
  color: var(--text-light);
  margin-left: clamp(8px, 1.5vw, 18px);
}


.contact-block__label {
  font-size: 12px;
  color: var(--text-light);
    margin-bottom: 2px;
  line-height: 1.4; /* tighter, cleaner */
}

.contact-block__phone {
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-main);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
}

/* NAVIGATION */
.primary-nav {
  background: var(--brand-main);
  position: relative;
  z-index: 15;
}

.primary-nav__list {
  display:flex;
  justify-content:center;
  align-items:center;
  list-style:none;

  /* smoother than hard gaps */
  gap: clamp(18px, 2vw, 38px);

  padding: 12px 0;
  flex-wrap: wrap; /* safer than nowrap */
}

.primary-nav__list a {
  color:#fff;
  font-weight:500;

  /* slightly smaller and scales */
  font-size: clamp(.88rem, .92vw, .98rem);

  letter-spacing:.01em;
  line-height:1.2;
  padding:.55rem .25rem;

  white-space: nowrap;
  transition: color .3s ease;
}

.primary-nav__list a:hover {
  color:var(--accent-color);
}


/* TRUST STRIP */
.trust-strip {
  background: var(--brand-main);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: #1b2e3a; /* darker variant of brand-main */


  /* Visual separation from nav/header */
  margin-top: 5px; /* small gap from nav */
  border-top: 3px solid var(--accent-color); /* accent-colored line */
  
   box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  position: relative;
  top: 0;
  z-index: 25;
  margin: 0 auto 20px auto;
  border-radius: var(--radius);
}

.trust-strip p {
  margin: 0;
}

/* HERO */
.hero-section { padding: 80px 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 55px);
  align-items: center;
}

/* HERO ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-grid__copy h1,
.hero-grid__copy .hero-grid__subtitle,
.hero-grid__copy .hero-grid__actions {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-grid__copy .hero-grid__subtitle { animation-delay: 0.2s; }
.hero-grid__copy .hero-grid__actions { animation-delay: 0.4s; }

.hero-grid__media img {
  transform: scale(0.98);
  transition: transform 0.4s ease;
   box-shadow: 0 20px 50px rgba(0,0,0,.15);
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.hero-grid__copy {
  min-height: 300px; /* avoids jump while fonts load */
}

.hero-grid__media img:hover { transform: scale(1); }

.hero-grid__subtitle { font-size: clamp(16px, 2vw, 20px); margin: clamp(16px, 2vw, 24px) 0; color: var(--text-light); }

.hero-grid__local { margin-bottom: 25px; }

.hero-grid__actions { display: flex; gap: 15px; margin-bottom: 12px; flex-wrap: wrap; }

.hero-grid__note { font-size: clamp(12px, 1.5vw, 14px); color: var(--text-light); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.25s ease-in-out;
  min-height: 48px;
}

.btn--primary { background: var(--accent-color); color: #000; justify-content: center; text-align: center;}
.btn--primary:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

.btn--outline { border: 2px solid var(--brand-main); color: var(--brand-main); }
.btn--outline:hover { background: var(--brand-main); color: white; }

/* FOOTER BUTTON FIX */
.site-footer .btn--primary {
  background: var(--accent-color);
  color: var(--text-main);
}

.site-footer .btn--primary:hover {
  background: #e0a800;
  color: var(--text-main);
  transform: translateY(-2px);
}



/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 35px;
  padding: clamp(18px, 2vw, 28px);
}

.feature-card {
  background: white;
  padding: clamp(22px, 2vw, 30px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card h3 { margin-bottom: 10px; font-size: 18px; }

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 40px;
}

.service-box {
  border: 1px solid var(--border-color);
  border-left:4px solid var(--accent-color);
  padding: clamp(20px, 2vw, 28px);
  border-radius: var(--radius);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: var(--accent-color);
}

.service-box h3 { margin-bottom: 10px; font-size: 18px; }

.service-box__link {
  margin-top: 10px;
  display: inline-block;
  color: var(--brand-main);
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-box p {
  margin-bottom: clamp(10px, 1vw, 14px);
}

.service-box__link:hover { color: var(--accent-color); transform: translateX(3px); }

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 35px;
}

.review-card {
  background: white;
  padding: clamp(22px, 2vw, 30px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card p {
  line-height: 1.7;
}

.faq-item p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.review-card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }

.review-card__stars { color: #f5b301; margin-bottom: 10px; }

.review-card__meta { margin-top: 15px; font-size: 14px; color: var(--text-light); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(90deg, var(--brand-main), #234051);
  color: white;
  padding: 40px 0;
}

.cta-band__inner { display: flex; justify-content: space-between; align-items: center; }

/* SERVICE AREA */
.area-list { columns: 2; margin-top: 20px; color: var(--text-light); }

/* Breadcrumbs */
/* Breadcrumb container */
.breadcrumb {
  background: linear-gradient(90deg, #eaf3f7, #f5f5f5); /* subtle gradient */
  padding: 8px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* soft shadow */
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  margin: 25px 0;
  transition: box-shadow 0.3s ease;
}

.breadcrumb:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* subtle hover lift */
}

/* List reset */
.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

/* Items */
.breadcrumb__item {
  color: #1b2e3a;
  position: relative;
  transition: color 0.2s;
}

/* Links */
.breadcrumb__item a {
  color: var(--brand-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

/* Extra left margin for the first breadcrumb link */
.breadcrumb__item:first-child a {
  margin-left: 6px; 
}

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

/* Separator */
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #7a7a7a;
  font-weight: 600;
}

/* Current page */
.breadcrumb__item--current {
  font-weight: 600;
  color: #1b2e3a;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .breadcrumb {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .breadcrumb__item:not(:last-child)::after {
    margin: 0 5px;
  }
}

/* GALLERY */
.media-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 35px; }

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover { transform: scale(1.03); box-shadow: var(--shadow); }

.media-card figcaption { font-size: 13px; margin-top: 6px; color: var(--text-light); }

/* LIGHTBOX MODAL (Enhanced with arrows) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  flex-direction: column;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85%;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.lightbox__caption {
  color: #fff;
  font-size: 14px;
  text-align: center;
  max-width: 90%;
}

/* Close Button */
.lightbox__close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox__close:hover { color: var(--accent-color); }

/* Navigation Arrows */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transition: color 0.3s ease;
}

.lightbox__nav:hover { color: var(--accent-color); }

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* Hide by default (we'll toggle with JS) */
.lightbox.hidden { display: none; }

/* QUOTE FORM */
.quote-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.quote-form { display: grid; gap: 18px; }

.field label { font-size: 14px; margin-bottom: 5px; display: block; }

.field input,
.field textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  font-family: inherit;
}


/* FOOTER */
.site-footer {   background: radial-gradient(circle at top, #1a1a1a, #0f0f0f); color: #d6d6d6; padding: 50px 0; font-size: 14px; }

.footer-main { max-width: 600px; margin-bottom: 20px; }

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

.footer-main a{
 color: #ffffff;
font-weight:500;
}

.footer-note { font-size: 13px; margin-top: 10px; }

.footer-meta { border-top: 1px solid #333; padding-top: 15px; font-size: 12px; }

.footer-logo {
  width: 250px;
  height: auto;
  display: block;
  margin: 0 0 12px 0;
}

.footer-main a:focus-visible{
  outline:2px solid #FFE4A8;
  outline-offset:3px;
}

.section--image-divider {
  padding: 40px 0;
}

.image-divider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.image-divider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.image-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.6)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #fff;
}

.image-divider__overlay h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.image-divider__overlay p {
  font-size: 16px;
  max-width: 600px;
}

/* IMAGE SECTIONS (CONTENT BREAKS) */
.section--image {
  padding: clamp(50px, 7vw, 90px) 0;
}

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

.image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Image styling */
.image-block img {
  width: clamp(20rem, 85cqw, 42rem);
  height: auto;
  border-radius: 14px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Subtle hover = premium feel */
.image-block img:hover {
  transform: scale(1.015);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Caption */
.image-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* BACK TO TOP */
.back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-color);
  padding: 10px 15px;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.back-top:hover {
  background: var(--brand-main);
  color: white;
  transform: scale(1.1);
}

ul li::marker {
  color: var(--accent-color);
  font-size: 1.15em;
}



li {
   margin-bottom: clamp(8px, .9vw, 12px);
}


.faq-list dt {
  transition: color .25s ease;
}

.faq-list dt:hover {
  color: var(--accent-color);
}

.faq-list dt:not(:first-child) {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}


.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.solution-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}


.solution-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  border: 1px solid transparent;
    position: relative;
  overflow: hidden;
}


.solution-card:hover::after {
  transform: scaleX(1);
}


.solution-card h3 {
  margin-bottom: 0.75rem;
}

.solution-card ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0.75rem;
}

.solution-card ul li {
  margin-bottom: 0.4rem;
}

.solution-best {
  font-size: 0.95rem;
  color: #555;
}

/* STRATEGY BOX */
.strategy-box {
  margin-top: 2.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: 1.5rem;
  background: #f5f7f8;
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li::before {
  content: "✔";
  margin-right: 0.5rem;
 
}



/* MOBILE */
@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: hover) and (pointer: fine) {
  .solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(92, 64, 51, 0.18); /* uses your brown tone */
    border-color: var(--accent-color);
  }
}

@media (hover:none) {
  .image-block img:hover,
  .media-card:hover,
  .feature-card:hover,
  .service-box:hover,
  .review-card:hover,
  .solution-card:hover {
    transform:none;
    box-shadow:var(--shadow);
  }
}

/* RESPONSIVE */

@media (max-width: 1024px){

  .primary-nav__list{
    gap: clamp(14px,1.5vw,24px);
  }

  .primary-nav__list a{
    font-size:.9rem;
  }

}

@media(max-width:950px){
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; gap: 15px; }
  .section {padding:clamp(55px,7vw,85px) 0;}
  .feature-grid,
.service-grid,
.review-grid{
  gap:24px;
}

.feature-card,
.service-box,
.review-card,
.solution-card{
  padding:clamp(20px,3vw,30px);
}
}


@media (max-width: 768px) {

.top-bar__inner {
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px clamp(16px, 5vw, 24px); /* slightly smaller for mobile */
}

.brand-block {
  flex: 1;
}

.contact-block {
  order: 3;
  width: 100%;
  text-align: center;
}

.contact-block__phone {
  font-size: 22px;
}

.menu-toggle {
  display: block;
}

.primary-nav{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.primary-nav.open{
  max-height:100vh;
}

.primary-nav__list{
  flex-direction:column;
  gap:0;
  padding:0;
}

.primary-nav__list li{
  width:100%;
  border-top:1px solid rgba(255,255,255,.18);
}

.primary-nav__list a{
  display:block;
  width:100%;
  padding:15px 20px;
  font-size:1rem;
}

 .dropdown {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .dropdown li a {
    padding: 12px 20px;
    color: white;
  }

.hero-section {
  padding: 50px 0;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.hero-grid__actions {
  flex-direction: column;
  gap: 12px;
}

.hero-grid__actions .btn, .btn--primary {
  width: 100%;
}

.hero-grid__media img {
  max-height: 320px;
  object-fit: cover;
}

.media-grid {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 30px);
}

.quote-layout {
  grid-template-columns: 1fr;
  gap: 30px;
}

.field input,
.field textarea {
  font-size: 16px;
}

 h1, h2, h3, h4, p, figcaption {
    text-align: center;
  }


  /* Center list bullets */
.hero-grid ul,
.hero-grid ol {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
}

  ul li, ol li {
       /* make list items inline-block to center nicely */
    margin: 0 5px;               /* spacing between bullets */
  }

  .faq-list dt {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 1.5rem;
  text-align: center;
  text-wrap: balance;
}

.faq-list dd {
  margin-top: 0.4rem;
  line-height: 1.6;
  text-align: center;
  text-wrap: balance;
}

.media-card figcaption {
  text-align: center;
}

.service-box__link{
display:block;
text-align:center;
margin-top:12px;
}

.service-box h3, .review-card {
text-align:center;
}

.left {
  text-align: left;
}

.brand-block__tagline {
  text-align: left;
}

.footer-main strong{
display:block;
text-align:center;
margin-bottom:8px;
}

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

  .footer-logo {
    margin: 0 auto 12px auto;
  }

  .solution-card {
    text-align: center;
  }

  .solution-card ul {
    padding-left: 0;
    list-style-position: inside;
  }

  .solution-card ul li {
    text-align: center;
  }

  .checklist {
    text-align: center;
  }

  .checklist li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .checklist li::before {
    position: relative;
    margin-right: 8px;
    flex-shrink: 0;
  }

  body{
font-size:1.04rem;
line-height:1.7;
}

h1{
font-size:clamp(2rem,7vw,2.7rem);
}

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

p{
margin-bottom:1.25rem;
}

.btn{
width:100%;
max-width:420px;
margin-inline:auto;
}

.hero-grid__actions{
align-items:center;
}

}



@media(max-width:650px){
  .menu-toggle { display: block; }
  .primary-nav__list { flex-direction: column; display: none; }
  .primary-nav.open .primary-nav__list { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }

  .breadcrumb {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .breadcrumb__item:not(:last-child)::after {
    margin: 0 5px;
  }

  .breadcrumb__item:first-child a {
    margin-left: 0; /* remove extra margin on small screens */
  }

  .section {padding:50px 0;}
}

@media(max-width:500px){
  .lightbox__image { max-width: 95%; max-height: 70%; }
  .footer-main { text-align: center; }
  .primary-nav__list a{
    font-size:.95rem;
    padding:14px 18px;
  }
}

@media (max-width: 360px) {
  .area-list {
    columns: 2;
    column-gap: 12px;
  }

  .area-list li {
    font-size: 0.85rem;
    line-height: 1.35;
    margin-bottom: 4px;
  }
}