:root {
  --yellow: #f1c40f;
  --yellow-brand: #f2c40c;
  --yellow-deep: #d5ac0f;
  --black: #111111;
  --charcoal: #1d1d1d;
  --charcoal-soft: #272727;
  --text-light: #f4f4f4;
  --text-mid: #d8d8d8;
  /* Hero-only warm palette (see DESIGN.md). Scoped to .hero-* — the rest of
     the site keeps the cooler --black/--text-light surface. */
  --hero-surface: #171309;
  --hero-on-surface: #ebe2d0;
  --hero-on-surface-variant: #d1c6ac;
  --hero-primary: #ffe391;
  --max-width: 1120px;
  --radius: 8px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 0.75rem;
  width: auto;
  height: auto;
  z-index: 10000;
  background: #ffffff;
  color: #000000;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  background: var(--yellow-brand);
  border-bottom: 2px solid var(--black);
  padding: 10px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.eyebrow {
  margin: 0;
  color: var(--black);
  font-size: 0.9rem;
}

.brand-name {
  margin: 0.2rem 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
}

.brand-home-link {
  color: inherit;
  text-decoration: none;
}

.brand-home-link:hover,
.brand-home-link:focus-visible {
  text-decoration: underline;
}

.location {
  margin: 0;
  color: #2a2a2a;
  font-size: 0.95rem;
}

.top-right {
  text-align: right;
}

.phone-link {
  display: inline-block;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}

.phone-link:hover,
.phone-link:focus-visible {
  text-decoration: underline;
}

.bbb-badge {
  margin: 0.4rem 0 0 auto;
  width: 130px;
  height: auto;
  display: block;
}

.main-nav {
  background: #202020;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  border-top: 1px solid #1a1a1a;
  background: #202020;
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 0;
  cursor: pointer;
}

.nav-toggle-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #ffffff;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #ffffff;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-list {
  margin: 0;
  padding: 0.8rem 0;
  list-style: none;
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-light);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--yellow);
}

.nav-list a[aria-current="page"] {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--hero-surface);
  padding: 4rem 0 6rem;
  overflow: hidden;
}

/* Background photo only. Must NOT be `.hero > img` — that would also capture
   any other direct img child (e.g. .hero-bbb) and blow it up to full bleed. */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  z-index: -2;
}

/* Warm scrim. The hero photo is a bright white house, so the centre needs enough
   darkening for the cream headline to hold contrast while the house still reads. */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 48%, rgba(23, 19, 9, 0.74), rgba(23, 19, 9, 0.4) 100%),
    linear-gradient(180deg, rgba(23, 19, 9, 0.6) 0%, rgba(23, 19, 9, 0.34) 45%, rgba(23, 19, 9, 0.72) 100%);
  z-index: -1;
}

/* White plate keeps the badge legible wherever it lands on the photo. */
.hero-bbb {
  position: absolute;
  top: 1.5rem;
  right: max(1rem, calc((100% - var(--max-width)) / 2));
  width: 130px;
  height: auto;
  padding: 0.4rem;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-phone {
  margin: -0.75rem 0 1.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--hero-primary);
}

.hero-phone a {
  color: inherit;
  text-decoration: none;
}

.hero-phone a:hover,
.hero-phone a:focus-visible {
  text-decoration: underline;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* shrink-to-fit inline-flex will happily exceed the container and blow out
     the mobile layout without this */
  max-width: 100%;
  margin: 0 0 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 227, 145, 0.3);
  border-radius: 9999px;
  background: rgba(255, 227, 145, 0.1);
  color: var(--hero-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge svg {
  flex: none;
}

.hero-content h1 {
  margin: 0 0 1.5rem;
  max-width: 16ch;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--hero-on-surface);
}

.hero-lede {
  margin: 0 0 2.5rem;
  max-width: 60ch;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--hero-on-surface-variant);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-hero-primary {
  background: var(--hero-primary);
  color: var(--black);
  box-shadow: 0 0 20px rgba(241, 196, 15, 0.3);
}

.btn-hero-outline {
  border: 2px solid var(--hero-primary);
  color: var(--hero-primary);
}

.btn-hero-outline:hover,
.btn-hero-outline:focus-visible {
  background: rgba(255, 227, 145, 0.1);
}

.hero-trust {
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: 2.5rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(235, 226, 208, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.hero-trust-icon {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: var(--charcoal-soft);
  border: 1px solid rgba(255, 227, 145, 0.2);
  color: var(--hero-primary);
}

.hero-trust strong {
  display: block;
  color: var(--hero-on-surface);
  font-size: 1.05rem;
}

.hero-trust span.hero-trust-note {
  display: block;
  color: var(--hero-on-surface-variant);
  font-size: 0.875rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--hero-on-surface);
  text-decoration: none;
  opacity: 0.55;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  opacity: 1;
}

.hero-scroll svg {
  animation: hero-bounce 2s infinite;
}

@keyframes hero-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

.btn {
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1rem;
}

.btn-dark {
  background: var(--black);
  color: var(--yellow);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

.btn-yellow-outline {
  border: 2px solid var(--yellow);
  color: var(--yellow);
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.05);
}

.highlight-row {
  background: var(--yellow);
  color: var(--black);
}

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.8rem 0;
  font-weight: 700;
  text-align: center;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
}

.trust-card {
  background: var(--charcoal-soft);
  border: 1px solid var(--yellow-deep);
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius);
  color: var(--yellow);
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding: 0.4rem 0 1.3rem;
}

.cta-row .btn {
  min-width: 180px;
  text-align: center;
}

.section-dark {
  background: var(--charcoal);
  margin: 1rem 0 0;
  padding: 2.2rem 0;
}

.section-dark h2 {
  color: var(--yellow);
  margin-top: 0;
}

.section-intro {
  color: var(--text-mid);
  max-width: 78ch;
}

.services-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.service-card {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  padding: 1rem 0.9rem;
  min-height: 92px;
  display: grid;
  align-items: center;
}

.service-card h3 {
  margin: 0;
  font-size: 1rem;
}

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

.testimonial-card {
  background: var(--charcoal-soft);
  border: 1px solid #3a3a3a;
  border-radius: var(--radius);
  padding: 1rem;
}

.testimonial-card h3 {
  margin: 0 0 0.25rem;
}

.stars {
  margin: 0 0 0.5rem;
  color: var(--yellow);
}

.faq-section {
  padding: 2rem 0;
}

.faq-section h2 {
  color: var(--yellow);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list article {
  background: var(--charcoal-soft);
  border: 1px solid #393939;
  border-radius: var(--radius);
  padding: 0.95rem;
}

.faq-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.site-footer {
  background: var(--yellow-brand);
  border-top: 2px solid var(--black);
  margin-top: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.6rem 0;
}

.site-footer h2 {
  color: var(--black);
  font-size: 1.1rem;
  margin-top: 0;
}

.site-footer p,
.site-footer a {
  color: var(--black);
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  color: var(--black);
  font-weight: 700;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.payment-icons img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding: 0.9rem 1rem 1.2rem;
  text-align: center;
  color: var(--black);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0.2rem 0;
}

.about-page {
  background: #f7f7f7;
  color: #1f1f1f;
  padding: 2rem 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.about-main-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.about-main-content h1 {
  color: var(--black);
  margin-top: 0;
  line-height: 1.25;
}

.about-main-content p {
  margin: 0.8rem 0;
}

.about-main-content a {
  color: #0060b8;
}

.about-main-content a:hover,
.about-main-content a:focus-visible {
  text-decoration: underline;
}

.about-figure {
  margin: 1rem 0;
}

.about-figure img {
  width: 100%;
  border-radius: 6px;
}

.about-values h2 {
  margin: 0.2rem 0 0.5rem;
  color: var(--black);
}

.about-services-sidebar {
  background: #ffffff;
  border-left: 1px solid #d8d8d8;
  padding: 0.2rem 0 0.2rem 1.1rem;
}

.about-services-sidebar h2 {
  color: var(--black);
  margin-top: 0;
}

.about-services-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.about-services-sidebar a {
  display: block;
  color: #1d1d1d;
  text-decoration: none;
  background: #f2c40c;
  border: 1px solid #dbb000;
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
}

.about-services-sidebar a:hover,
.about-services-sidebar a:focus-visible {
  filter: brightness(1.02);
}

.areas-page {
  background: #f7f7f7;
  color: #1f1f1f;
  padding: 2rem 0;
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.areas-main-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.areas-main-content h1 {
  margin-top: 0;
  color: var(--black);
  line-height: 1.25;
}

.areas-main-content h2,
.areas-main-content h3 {
  color: var(--black);
}

.areas-main-content p {
  margin: 0.8rem 0;
}

.areas-main-content a {
  color: #0060b8;
}

.areas-main-content a:hover,
.areas-main-content a:focus-visible {
  text-decoration: underline;
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.85rem;
}

.areas-list a {
  display: block;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  text-decoration: none;
  color: #1f1f1f;
}

.areas-list a:hover,
.areas-list a:focus-visible {
  border-color: #d4a800;
  background: #fff9dd;
}

.areas-faq {
  margin-top: 1.25rem;
}

.areas-faq article {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 0.8rem;
  background: #fbfbfb;
}

.areas-faq article + article {
  margin-top: 0.65rem;
}

.areas-faq h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.areas-faq p {
  margin: 0;
}

.areas-services-sidebar {
  background: #ffffff;
  border-left: 1px solid #d8d8d8;
  padding: 0.2rem 0 0.2rem 1.1rem;
}

.areas-services-sidebar h2 {
  color: var(--black);
  margin-top: 0;
}

.areas-services-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.areas-services-sidebar a {
  display: block;
  color: #1d1d1d;
  text-decoration: none;
  background: #f2c40c;
  border: 1px solid #dbb000;
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
}

.areas-services-sidebar a:hover,
.areas-services-sidebar a:focus-visible {
  filter: brightness(1.02);
}

.contact-page {
  background: #f7f7f7;
  color: #1f1f1f;
  padding: 2rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.contact-main-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.contact-main-content h1 {
  margin-top: 0;
  color: var(--black);
  line-height: 1.25;
}

.contact-main-content h2,
.contact-main-content h3 {
  color: var(--black);
}

.contact-main-content p {
  margin: 0.8rem 0;
}

.contact-main-content a {
  color: #0060b8;
}

.contact-main-content a:hover,
.contact-main-content a:focus-visible {
  text-decoration: underline;
}

.contact-block {
  margin: 1.15rem 0;
  padding: 1rem;
  background: #fbfbfb;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  text-align: center;
}

.contact-block address {
  margin: 0.7rem 0;
  font-style: normal;
}

.contact-block address p {
  margin: 0.2rem 0;
}

.contact-phone-cta {
  display: block;
  margin-top: 0.8rem;
  background: linear-gradient(90deg, #f2c40c 0%, #111111 100%);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.85rem 1rem;
}

.contact-phone-cta:hover,
.contact-phone-cta:focus-visible {
  filter: brightness(1.04);
  text-decoration: none;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #dddddd;
  border-radius: 6px;
  overflow: hidden;
  background: #eaeaea;
}

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

.contact-faq {
  margin-top: 1.2rem;
}

.contact-faq article {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 0.8rem;
  background: #fbfbfb;
}

.contact-faq article + article {
  margin-top: 0.65rem;
}

.contact-faq h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.contact-faq p {
  margin: 0;
}

.contact-services-sidebar {
  background: #ffffff;
  border-left: 1px solid #d8d8d8;
  padding: 0.2rem 0 0.2rem 1.1rem;
}

.contact-services-sidebar h2 {
  color: var(--black);
  margin-top: 0;
}

.contact-services-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.contact-services-sidebar a {
  display: block;
  color: #1d1d1d;
  text-decoration: none;
  background: #f2c40c;
  border: 1px solid #dbb000;
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
}

.contact-services-sidebar a:hover,
.contact-services-sidebar a:focus-visible {
  filter: brightness(1.02);
}

.gallery-page {
  background: #f7f7f7;
  color: #1f1f1f;
  padding: 2rem 0;
}

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

.gallery-main-content {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.gallery-main-content h1 {
  margin-top: 0;
  color: var(--black);
}

.gallery-main-content h2,
.gallery-main-content h3 {
  color: var(--black);
}

.gallery-main-content a {
  color: #0060b8;
}

.gallery-main-content a:hover,
.gallery-main-content a:focus-visible {
  text-decoration: underline;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-card {
  margin: 0;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  overflow: hidden;
}

.gallery-link {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efefef;
}

.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-link:hover img,
.gallery-link:focus-visible img {
  transform: scale(1.03);
  opacity: 0.96;
}

.gallery-card figcaption {
  padding: 0.45rem 0.6rem;
  font-size: 0.9rem;
  color: #2a2a2a;
}

.blog-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.blog-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--charcoal-soft);
  border: 1px solid #333333;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--yellow-brand);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #efefef;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.blog-card:hover .blog-card-media img,
.blog-card:focus-within .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-card-meta {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow-brand);
}

.blog-card-body h2 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.blog-card-body h2 a {
  color: var(--text-light);
  text-decoration: none;
}

.blog-card-body h2 a:hover,
.blog-card-body h2 a:focus-visible {
  color: var(--yellow-brand);
}

.blog-card-body p {
  margin: 0;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.blog-card-more {
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--yellow-brand);
  text-decoration: none;
}

.blog-card-more:hover,
.blog-card-more:focus-visible {
  text-decoration: underline;
}

.blog-breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.blog-breadcrumb a {
  color: var(--yellow);
  text-decoration: none;
}

.blog-breadcrumb a:hover,
.blog-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.blog-breadcrumb span[aria-hidden] {
  color: var(--text-mid);
  margin: 0 0.15rem;
}

.blog-featured {
  margin: 1.25rem 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-featured img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-summary {
  margin-top: 1.2rem;
}

.gallery-faq {
  margin-top: 1.2rem;
}

.gallery-faq article {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 0.8rem;
  background: #fbfbfb;
}

.gallery-faq article + article {
  margin-top: 0.65rem;
}

.gallery-faq h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.gallery-faq p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 10000;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  color: #ffffff;
  margin: 0.75rem 0 0;
  text-align: center;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  border-radius: 6px;
  background: #f2c40c;
  color: #111111;
  font-weight: 700;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .nav-list {
    gap: 0.8rem 1rem;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 5rem;
  }

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

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

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

  .about-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 1fr);
    gap: 1.25rem;
  }

  .areas-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 1fr);
    gap: 1.25rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 1fr);
    gap: 1.25rem;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .top-bar {
    flex-direction: column;
    gap: 0.6rem;
  }

  .top-right {
    text-align: left;
  }

  .main-nav {
    padding: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    border-top: 1px solid #333333;
  }

  .nav-list a {
    display: block;
    font-size: 1rem;
    white-space: nowrap;
    padding: 0.82rem 0.25rem;
    text-align: center;
  }

  .highlights,
  .trust-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    /* extra top padding so the badge never collides with the pill/headline */
    padding: 5.5rem 0 4.5rem;
  }

  .hero-bbb {
    top: 1rem;
    right: 1rem;
    width: 92px;
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.8rem;
  }

  /* Desktop affordance only — it collides with the trust row on small screens. */
  .hero-scroll {
    display: none;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .hero-lede {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    width: 100%;
    margin-bottom: 3rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stack trust signals and centre them once there is no room for two columns. */
  .hero-trust {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .hero-trust li {
    justify-content: center;
  }

  .cta-row .btn {
    width: 100%;
  }

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

  .service-card {
    min-height: 80px;
  }

  .payment-icons img {
    width: 46px;
    height: 46px;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }

  .about-page {
    padding: 1.2rem 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .areas-page {
    padding: 1.2rem 0;
  }

  .areas-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-main-content,
  .about-services-sidebar {
    border-left: 0;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    background: #ffffff;
  }

  .areas-main-content,
  .areas-services-sidebar {
    border-left: 0;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    background: #ffffff;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }

  .contact-page {
    padding: 1.2rem 0;
  }

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

  .contact-main-content,
  .contact-services-sidebar {
    border-left: 0;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    background: #ffffff;
  }

  .contact-phone-cta {
    width: 100%;
  }

  .gallery-page {
    padding: 1.2rem 0;
  }

  .gallery-main-content {
    padding: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .lightbox-close {
    top: 0.7rem;
    right: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===== FAQ accordion (shared across .faq-list, .contact-faq, .areas-faq, .gallery-faq) ===== */
.faq-item > h3 {
  margin: 0;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-trigger:hover {
  color: var(--yellow);
}

.faq-trigger:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  color: var(--yellow);
}

.faq-trigger::after {
  content: "+";
  flex: none;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
}

.faq-trigger[aria-expanded="true"]::after {
  content: "\2212";
}

.faq-answer {
  margin-top: 0.6rem;
}

.faq-answer[hidden] {
  display: none;
}
