/* ============================================================
   DL Design & Construction — Master Stylesheet
   Modern 2026 Design System
   Covers BOTH BEM (index.html) and flat (inner pages) conventions
   ============================================================ */

/* --- Custom Properties --------------------------------------- */
:root {
  --color-dark:         #111111;
  --color-accent:       #c8a55c;
  --color-accent-hover: #b8953f;
  --color-bg:           #fafaf8;
  --color-surface:      #ffffff;
  --color-border:       #e8e6e1;
  --color-text:         #1a1a1a;
  --color-muted:        #737373;
  --color-subtle:       #f0efec;
  --radius-sm:          8px;
  --radius-md:          16px;
  --radius-lg:          24px;
  --radius-full:        9999px;
  --shadow-sm:          0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:          0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:          0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl:          0 24px 60px rgba(0,0,0,0.12);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  color: inherit;
}

h1 {
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h3 {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* --- Layout Containers --------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 720px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--color-subtle);
}

.section-cta {
  background: var(--color-dark);
  color: #fff;
}

.bg-surface {
  background: var(--color-surface);
}

.bg-white {
  background: #fff;
}

.bg-dark {
  background: var(--color-dark);
  color: #fff;
}

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

/* --- Eyebrow ------------------------------------------------- */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* --- Section Headers ----------------------------------------- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header .eyebrow {
  justify-content: center;
}

.section-header--light {
  color: #fff;
}

.section-header--light .eyebrow {
  color: var(--color-accent);
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

.section-header--left .eyebrow {
  justify-content: flex-start;
}

.section-header__sub,
.section-header p {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-top: 16px;
}

.section-header--light .section-header__sub,
.section-header--light p {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.4;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: inherit;
}

.btn--accent,
.btn-accent,
.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
  box-shadow: 0 2px 8px rgba(200, 165, 92, 0.3);
}

.btn--accent:hover,
.btn-accent:hover,
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 165, 92, 0.4);
}

.btn--outline,
.btn-outline,
.btn-secondary {
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
}

.btn--outline:hover,
.btn-outline:hover,
.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--dark,
.btn-dark {
  background: var(--color-dark);
  color: #fff;
}

.btn--dark:hover,
.btn-dark:hover {
  background: #222;
}

.btn--lg,
.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn--sm,
.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn--full,
.btn-full {
  width: 100%;
  justify-content: center;
}

/* Dark background outline button overrides */
.hero .btn-outline,
.hero .btn--outline,
.hero .btn-secondary,
.hero-service .btn-secondary,
.hero-area .btn-secondary,
.hero-service .btn--outline,
.hero-area .btn--outline,
.hero-service .btn-outline,
.hero-area .btn-outline,
.hero-service .btn--outline-white,
.hero-area .btn--outline-white,
.hero .btn--outline-white,
.page-hero .btn-outline,
.page-hero .btn--outline,
.page-hero .btn-secondary,
.section-cta .btn-outline,
.section-cta .btn--outline,
.section-cta .btn-secondary,
.cta-section .btn-outline,
.cta-section .btn--outline,
.cta-section .btn-secondary,
.cta-band .btn-outline,
.cta-band .btn--outline,
.cta-band .btn-secondary,
.footer-cta .btn-outline,
.footer-cta .btn--outline,
.footer-cta .btn-secondary,
.footer-cta-band .btn-outline,
.footer-cta-band .btn--outline,
.footer-cta-band .btn-secondary,
.why-us .btn-outline,
.why-us .btn--outline,
.why-us .btn-secondary,
.bg-dark .btn-outline,
.bg-dark .btn--outline,
.bg-dark .btn-secondary,
.mobile-nav .btn--outline,
.mobile-nav .btn-outline,
.mobile-nav .btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
}

.hero .btn-outline:hover,
.hero .btn--outline:hover,
.hero .btn-secondary:hover,
.hero-service .btn-secondary:hover,
.hero-area .btn-secondary:hover,
.hero-service .btn--outline:hover,
.hero-area .btn--outline:hover,
.hero-service .btn-outline:hover,
.hero-area .btn-outline:hover,
.hero-service .btn--outline-white:hover,
.hero-area .btn--outline-white:hover,
.hero .btn--outline-white:hover,
.page-hero .btn-outline:hover,
.page-hero .btn--outline:hover,
.page-hero .btn-secondary:hover,
.section-cta .btn-outline:hover,
.section-cta .btn--outline:hover,
.section-cta .btn-secondary:hover,
.cta-section .btn-outline:hover,
.cta-section .btn--outline:hover,
.cta-section .btn-secondary:hover,
.cta-band .btn-outline:hover,
.cta-band .btn--outline:hover,
.cta-band .btn-secondary:hover,
.footer-cta .btn-outline:hover,
.footer-cta .btn--outline:hover,
.footer-cta .btn-secondary:hover,
.footer-cta-band .btn-outline:hover,
.footer-cta-band .btn--outline:hover,
.footer-cta-band .btn-secondary:hover,
.why-us .btn-outline:hover,
.why-us .btn--outline:hover,
.why-us .btn-secondary:hover,
.bg-dark .btn-outline:hover,
.bg-dark .btn--outline:hover,
.bg-dark .btn-secondary:hover,
.mobile-nav .btn--outline:hover,
.mobile-nav .btn-outline:hover,
.mobile-nav .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

/* --- Announcement Bar ---------------------------------------- */
.announcement-bar {
  background: var(--color-dark);
  color: #fff;
  padding: 12px 0;
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
}

.announcement-bar .container,
.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.announcement-bar__text {
  flex: 1;
  text-align: center;
}

.announcement-bar__close,
.announce-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 8px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.2s;
}

.announcement-bar__close:hover,
.announce-close:hover {
  color: #fff;
}

/* --- Navigation — Glass Nav ---------------------------------- */
.site-header,
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled,
.site-nav.scrolled {
  background: rgba(17, 17, 17, 0.98);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15);
}

/* Inner container */
.site-header__nav,
.nav-inner,
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-header__logo,
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header__logo-amp {
  color: var(--color-accent);
}

/* Nav links list */
.site-header__links,
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.site-header__item {
  position: relative;
}

.site-header__item--dropdown {
  position: relative;
}

/* Nav link items */
.site-header__link,
.nav-links a,
.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 8px 16px;
  font-size: 0.88rem;
  transition: color 0.2s, background 0.2s;
  border-radius: var(--radius-sm);
}

.site-header__link:hover,
.nav-links a:hover,
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-header__link.active,
.nav-links a.active {
  color: #fff;
}

/* Dropdowns */
.site-header__dropdown-toggle,
.dropdown-toggle,
.nav-dropdown {
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'DM Sans', sans-serif;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.site-header__dropdown-toggle:hover,
.dropdown-toggle:hover,
.nav-dropdown:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.dropdown-chevron {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

/* Dropdown menus */
.site-header__dropdown,
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  min-width: 240px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1001;
  box-shadow: var(--shadow-xl);
}

.site-header__item--dropdown:hover .site-header__dropdown,
.nav-dropdown:hover .dropdown-menu,
.site-header__item--dropdown:focus-within .site-header__dropdown,
.nav-dropdown:focus-within .dropdown-menu {
  max-height: 500px;
  opacity: 1;
  padding: 8px 0;
}

.site-header__dropdown a,
.dropdown-menu a,
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s;
}

.site-header__dropdown a:hover,
.dropdown-menu a:hover,
.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-accent);
}

/* Right section */
.site-header__actions,
.nav-right,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__phone,
.nav-phone {
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.site-header__phone:hover,
.nav-phone:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Force CTA button visibility in nav */
.site-header__actions .btn--accent,
.site-header__actions .btn-accent,
.site-header__actions .btn-primary,
.nav-right .btn--accent,
.nav-right .btn-accent,
.nav-right .btn-primary,
.site-header__cta {
  background: var(--color-accent) !important;
  color: var(--color-dark) !important;
  white-space: nowrap;
  padding: 10px 22px;
}

/* Hamburger */
.site-header__hamburger,
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
}

.site-header__hamburger span,
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

/* --- Mobile Nav ---------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__inner,
.mobile-nav-inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mobile-nav__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  align-self: flex-end;
  padding: 8px;
  transition: opacity 0.2s;
}

.mobile-nav__close:hover {
  opacity: 0.7;
}

.mobile-nav a,
.mobile-nav__links a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px 0;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__dropdown-toggle,
.mobile-nav .dropdown-toggle {
  color: #fff;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 1.2rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav__dropdown,
.mobile-nav .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  padding: 0;
  position: static;
  opacity: 1;
  border: none;
  background: transparent;
  min-width: auto;
  box-shadow: none;
}

.mobile-nav__dropdown a,
.mobile-nav .dropdown-menu a {
  padding: 12px 0 12px 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: none;
}

.mobile-nav__dropdown a:hover,
.mobile-nav .dropdown-menu a:hover {
  color: var(--color-accent);
}

.mobile-nav__actions,
.mobile-nav-actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-phone {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  text-align: center;
}

/* --- Hero — Homepage ----------------------------------------- */
.hero {
  background: var(--color-dark);
  color: #fff;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 14px,
    rgba(255, 255, 255, 0.04) 14px,
    rgba(255, 255, 255, 0.04) 28px
  );
  pointer-events: none;
}

.hero .container,
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title,
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero__subhead,
.hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__trust-chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__visual {
  position: relative;
}

.hero__texture-panel {
  border-radius: var(--radius-lg);
  height: 440px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: #1a1a1a;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 14px,
    rgba(255, 255, 255, 0.02) 14px,
    rgba(255, 255, 255, 0.02) 28px
  );
}

.hero__stat-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent);
}

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

/* --- Hero — Inner Pages -------------------------------------- */
.page-hero {
  background: var(--color-dark);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.hero-service,
.hero-area {
  background: var(--color-dark);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-pattern,
.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 14px,
    rgba(255, 255, 255, 0.04) 14px,
    rgba(255, 255, 255, 0.04) 28px
  );
  pointer-events: none;
}

.hero-service .container,
.hero-area .container {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.hero-service h1,
.hero-area h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}

.hero-service .hero-sub,
.hero-area .hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-cta,
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Breadcrumb ---------------------------------------------- */
.breadcrumb {
  background: var(--color-dark);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 8px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb span {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb nav,
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}

.breadcrumb ol li {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.breadcrumb ol li + li::before {
  content: '/';
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb ol li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.breadcrumb ol li a:hover {
  color: var(--color-accent);
}

/* --- Trust Bar ----------------------------------------------- */
.trust-bar {
  background: #161616;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar .container,
.trust-bar__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.trust-bar__icon {
  color: var(--color-accent);
  flex-shrink: 0;
  opacity: 0.8;
}

.trust-bar__icon svg {
  width: 28px;
  height: 28px;
}

.trust-bar__text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.trust-bar__text span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.trust-bar__separator {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}

/* --- Services Grid — Homepage -------------------------------- */
.services {
  padding: 100px 0;
  background: var(--color-surface);
}

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

.services__card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
  border: 1px solid var(--color-border);
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.services__card-img {
  height: 220px;
  overflow: hidden;
  background: var(--color-dark);
}

.services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.services__card-body {
  padding: 28px;
}

.services__card-body h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.services__card-body p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.65;
}

.services__card-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}

.services__card-link:hover {
  gap: 10px;
}

/* --- Services — Area Pages ----------------------------------- */
.services-section {
  padding: 100px 0;
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
}

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

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.service-card a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

/* --- Reviews — Homepage -------------------------------------- */
.reviews {
  padding: 100px 0;
  background: var(--color-subtle);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.reviews__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  transition: box-shadow 0.3s;
}

.reviews__card:hover {
  box-shadow: var(--shadow-md);
}

.reviews__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.reviews__date {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.reviews__text {
  margin: 16px 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.reviews__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.reviews__name {
  font-weight: 500;
  font-size: 0.9rem;
}

.reviews__location {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.reviews__google {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  background: #4285F4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* --- Why Us — Homepage --------------------------------------- */
.why-us {
  padding: 100px 0;
  background: var(--color-dark);
  color: #fff;
  position: relative;
}

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

.why-us__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.why-us__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.why-us__card h3 {
  margin: 20px 0 10px;
  color: #fff;
}

.why-us__card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

.why-us__icon {
  color: var(--color-accent);
}

.why-us__icon svg {
  width: 36px;
  height: 36px;
}

/* --- Why Section — Area Pages -------------------------------- */
.why-section {
  padding: 100px 0;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(200, 165, 92, 0.1);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Process — Homepage -------------------------------------- */
.process {
  padding: 100px 0;
  background: var(--color-subtle);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--color-border);
}

.process__step {
  text-align: center;
  position: relative;
}

.process__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--color-subtle);
  box-shadow: var(--shadow-md);
}

.process__step h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.process__step p {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.process__connector {
  display: none;
}

/* --- Process — Service Pages --------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

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

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  border: 3px solid var(--color-bg);
  box-shadow: var(--shadow-md);
}

/* --- FAQ — Homepage (BEM) ------------------------------------ */
.faq {
  padding: 100px 0;
  background: var(--color-surface);
}

.faq .container,
.faq__layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 56px;
}

.faq__sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.faq__sidebar h3 {
  margin-bottom: 12px;
}

.faq__sidebar p {
  color: var(--color-muted);
  margin-bottom: 24px;
}

.faq__list,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq__item,
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question,
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.5;
  transition: color 0.2s;
}

.faq__question:hover,
.faq-question:hover {
  color: var(--color-accent);
}

.faq__chevron {
  font-size: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  color: var(--color-muted);
}

.faq__question[aria-expanded="true"] .faq__chevron,
.faq-question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer,
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner,
.faq-answer > div,
.faq-answer p {
  padding: 0 0 24px;
  color: var(--color-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* --- FAQ — Service/Area Pages -------------------------------- */
.faq-section {
  padding: 100px 0;
  background: var(--color-subtle);
}

/* --- CTA Band / Section -------------------------------------- */
.cta-band {
  background: var(--color-dark);
  color: #fff;
  padding: 56px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  margin-bottom: 8px;
}

.cta-band-text p {
  color: rgba(255, 255, 255, 0.55);
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cta-section {
  background: var(--color-dark);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer CTA ---------------------------------------------- */
.footer-cta,
.footer-cta-band {
  background: var(--color-dark);
  padding: 56px 0;
  color: #fff;
}

.footer-cta .container,
.footer-cta__inner,
.footer-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-cta__title,
.footer-cta-text {
  flex: 1;
}

.footer-cta h2,
.footer-cta-text h2 {
  margin-bottom: 4px;
}

.footer-cta p,
.footer-cta-text p,
.footer-cta-band p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-cta p a,
.footer-cta-band p a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-cta p a:hover,
.footer-cta-band p a:hover {
  color: #fff;
}

.footer-cta__actions,
.footer-cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-phone-lg {
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  transition: color 0.2s;
}

.footer-phone-lg:hover {
  color: var(--color-accent);
}

/* --- Footer -------------------------------------------------- */
.site-footer,
footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 0 0;
}

.footer-main {
  padding: 64px 0;
}

.site-footer__grid,
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-footer__logo,
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-footer__nap,
.site-footer address,
.footer-about address {
  font-style: normal;
  line-height: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.site-footer address a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

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

.site-footer__col h4,
.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer__col ul,
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col li,
.footer-col li {
  margin-bottom: 10px;
}

.site-footer__col a,
.footer-col a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.site-footer__col a:hover,
.footer-col a:hover {
  color: #fff;
}

.site-footer__bottom,
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 32px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Sticky CTA Bar ------------------------------------------ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: #fff;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.sticky-cta .container,
.sticky-cta__inner,
.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta__actions,
.sticky-cta-actions,
.sticky-cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sticky-cta__close,
.cta-dismiss {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 8px;
  transition: color 0.2s;
}

.sticky-cta__close:hover,
.cta-dismiss:hover {
  color: #fff;
}

.sticky-cta .btn--accent,
.sticky-cta .btn-accent {
  background: var(--color-accent);
  color: var(--color-dark);
}

.sticky-cta a {
  color: #fff;
  text-decoration: none;
}

/* --- About Page ---------------------------------------------- */
.about-story {
  padding: 100px 0;
}

.about-story-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-story-content h2 {
  margin: 40px 0 20px;
}

.about-story-content p {
  color: var(--color-muted);
  margin-bottom: 18px;
  line-height: 1.75;
}

.about-quote-section {
  padding: 64px 0;
  background: var(--color-dark);
  color: #fff;
  text-align: center;
}

.about-quote {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-top: 48px;
}

.about-quote::before {
  content: '\201C';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-style: normal;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.6;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.credential-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.credential-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.credential-card h3 {
  margin: 16px 0 8px;
}

.credential-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* --- Contact Page -------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 56px;
  padding: 100px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--color-text);
}

.form-group .required {
  color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(200, 165, 92, 0.1);
}

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

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

.contact-info-card {
  background: var(--color-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-info-item a {
  text-decoration: none;
  transition: color 0.2s;
}

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

.contact-phone-lg {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.contact-phone-lg:hover {
  color: var(--color-accent);
}

.contact-response-time {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(200, 165, 92, 0.06);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--color-text);
}

.contact-response-time svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success {
  padding: 32px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: var(--radius-sm);
  color: #16a34a;
  text-align: center;
  font-size: 0.95rem;
}

.form-error {
  padding: 16px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: var(--radius-sm);
  color: #dc2626;
  font-size: 0.95rem;
}

/* --- Projects Page ------------------------------------------- */
.project-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--color-border);
  background: #fff;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
  border-color: var(--color-accent);
}

.filter-btn.active {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

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

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, box-shadow 0.3s;
}

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

.project-card.hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

.project-card-img {
  height: 240px;
  overflow: hidden;
  background: var(--color-dark);
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-img img {
  transform: scale(1.06);
}

.project-card-info {
  padding: 20px;
}

.project-label {
  font-weight: 500;
  font-size: 0.88rem;
}

/* --- Service Page Specific ----------------------------------- */
.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  padding-left: 32px;
  position: relative;
}

.benefits-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.related-service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
}

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

.related-service-card h3 {
  margin-bottom: 8px;
}

.related-service-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.65;
}

.related-service-card a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

/* --- Area Page Specific -------------------------------------- */
.intro-section {
  padding: 100px 0;
}

.nearby-section {
  padding: 64px 0;
}

.area-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.92rem;
}

.area-links a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(200, 165, 92, 0.04);
}

/* --- 404 Error Page ------------------------------------------ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  color: #fff;
}

.error-content {
  text-align: center;
  max-width: 500px;
}

.error-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  color: var(--color-accent);
}

.error-page p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

/* --- Focus Styles -------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: inherit;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container,
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

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

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

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

  .process__steps::before {
    display: none;
  }

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

  .faq .container,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .faq__sidebar {
    position: static;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav toggles */
  .site-header__links,
  .nav-links {
    display: none;
  }

  .site-header__actions,
  .nav-right,
  .nav-actions {
    display: none;
  }

  .site-header__phone,
  .nav-phone {
    display: none;
  }

  .site-header__hamburger,
  .hamburger {
    display: flex;
  }

  /* Section padding */
  .section,
  .services,
  .reviews,
  .why-us,
  .process,
  .faq,
  .faq-section,
  .services-section,
  .why-section,
  .intro-section,
  .about-story {
    padding: 64px 0;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-service,
  .hero-area {
    padding: 56px 0;
  }

  /* Grids to single column */
  .services__grid,
  .services-grid,
  .reviews__grid,
  .why-us__grid,
  .process__steps,
  .project-grid,
  .related-services-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ layout */
  .faq .container,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .faq__sidebar {
    position: static;
  }

  /* Contact layout */
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  /* Trust bar */
  .trust-bar .container,
  .trust-bar__grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-bar__separator {
    display: none;
  }

  .trust-bar__item {
    min-width: 140px;
  }

  /* Footer CTA */
  .footer-cta .container,
  .footer-cta__inner,
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta__actions,
  .footer-cta-actions {
    flex-direction: column;
  }

  /* Sticky CTA */
  .sticky-cta .container,
  .sticky-cta__inner,
  .sticky-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* CTA band */
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Footer grid */
  .site-footer__grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  nav,
  .site-header,
  .site-nav,
  .mobile-nav,
  .announcement-bar,
  .sticky-cta,
  .footer-cta,
  .footer-cta-band,
  .site-footer,
  .cta-band,
  .cta-section {
    display: none !important;
  }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
