/* ============================================================
   COMPONENTS — Eco Landscape Care
   Buttons, cards, nav, forms, badges, accordion, carousel,
   before/after, breadcrumb, modal, consent banner, footer.
   ============================================================ */

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  /* UA reset — critical pitfall prevention */
  background: transparent;
  border: none;
  cursor: pointer;
  /* Base styles */
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-body);
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: var(--border-focus);
  outline-offset: 3px;
}

/* Primary — terracotta fill */
.btn--primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: var(--color-accent-hover);
  color: #FFFFFF;
}

/* Secondary — outline terracotta */
.btn--secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn--secondary:hover {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

/* Ghost dark — for use on dark/olive sections */
.btn--ghost-dark {
  background-color: transparent;
  color: var(--color-text-inverse);
  border: 2px solid var(--color-text-inverse);
}
.btn--ghost-dark:hover {
  background-color: #FFFFFF;
  color: var(--color-text-primary);
  border-color: #FFFFFF;
}

/* Ghost accent — outline only, accent color */
.btn--ghost-accent {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn--ghost-accent:hover {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

/* Sizes */
.btn--lg { padding: 14px 28px; font-size: var(--text-body-lg); }
.btn--sm { padding: 8px 16px; font-size: var(--text-body-sm); }
.btn--full { width: 100%; justify-content: center; }

/* Disabled */
.btn[disabled], .btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── BADGES ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 600;
  line-height: 1.3;
}

.badge--service {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
}

.badge--success {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.badge--neutral {
  background-color: var(--color-border);
  color: var(--color-text-secondary);
}

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease, background-color 0.3s ease;
  /* CRITICAL: positioned ancestor for mega-menu */
  position: sticky;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header.header--transparent {
  background-color: transparent;
  border-bottom-color: transparent;
}

.header-inner {
  position: relative; /* CRITICAL: positioned ancestor for mega-menu absolute panel */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 72px;
  padding-inline: var(--space-gutter);
  max-width: var(--space-container);
  margin-inline: auto;
}

@media (max-width: 1023px) {
  .header-inner { height: 64px; }
}

/* Logo */
.header-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  height: 40px;
  width: auto;
}

@media (max-width: 1023px) {
  .header-logo img { height: 32px; }
}

/* Desktop nav */
.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .site-nav { display: flex; }
}

.nav-item {
  /* No position:relative — .header-inner is the positioned ancestor for the mega-menu */
}

/* Nav links — button reset for mega-menu trigger */
.nav-link {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: color 0.15s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: var(--color-accent);
  width: 0;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link[aria-expanded="true"]::after,
.nav-link--active::after {
  width: calc(100% - 24px);
}

.nav-link:hover,
.nav-link--active {
  color: var(--color-accent);
}

.nav-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.nav-link[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Header right group */
.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-phone { display: flex; }
}

/* Hamburger */
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-primary);
  border-radius: var(--radius-md);
}

.hamburger:focus-visible {
  outline: var(--border-focus);
  outline-offset: 3px;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* ── MEGA-MENU ────────────────────────────────────────────── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 640px;
  background-color: var(--color-surface-sand);
  border-top: 2px solid var(--color-accent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-7) var(--space-6);
  z-index: 200;
  display: none;
}

.mega-menu.is-open {
  display: block;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .mega-menu-inner {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-7);
  }
}

/* Services columns */
.mega-menu-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .mega-menu-services {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5) var(--space-7);
  }
}

.mega-menu-group-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mega-menu-item a {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  border-radius: var(--radius-md);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.mega-menu-item a:hover,
.mega-menu-item a:focus {
  background-color: var(--color-primary-light);
  border-left-color: var(--color-accent);
}

.mega-menu-item a:hover .mega-item-name,
.mega-menu-item a:focus .mega-item-name {
  color: var(--color-primary-hover);
}

.mega-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.mega-item-text {}
.mega-item-name {
  display: block;
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.3;
  margin-bottom: 2px;
}

.mega-item-blurb {
  display: block;
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* Featured promo block */
.mega-promo {
  background-color: var(--color-surface-olive);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
}

.mega-promo-overline {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-inverse-muted);
}

.mega-promo h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-inverse);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.mega-promo-body {
  font-size: var(--text-body-sm);
  color: var(--color-text-inverse-muted);
  line-height: 1.5;
}

.mega-promo-all {
  font-size: var(--text-body-sm);
  color: var(--color-text-inverse-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mega-promo-all:hover {
  color: var(--color-text-inverse);
}

.mega-promo-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  opacity: 0.07;
  color: var(--color-text-inverse);
  pointer-events: none;
}

/* ── MOBILE DRAWER ────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
}

/* JS uses drawer.hidden = false to open — :not([hidden]) shows it */
.mobile-drawer[hidden] { display: none !important; }

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 31, 20, 0.6);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: var(--color-surface);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  min-height: 64px;
}

.drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
}

.drawer-close:hover { color: var(--color-text-primary); }
.drawer-close:focus-visible { outline: var(--border-focus); outline-offset: 2px; }

.drawer-nav {
  flex: 1;
  padding: var(--space-4) 0;
  list-style: none;
}

.drawer-nav-link {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  min-height: 48px;
  transition: background-color 0.15s ease;
}

.drawer-nav-link:hover { background-color: var(--color-surface-sand); }
.drawer-nav-link:focus-visible { outline: var(--border-focus); outline-offset: -3px; }

.drawer-nav-link svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-secondary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.drawer-nav-link[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer-nav-link--active { color: var(--color-accent); font-weight: 600; background-color: var(--color-accent-light); }

/* Services accordion in drawer */
/* JS uses servicesPanel.hidden = ... — :not([hidden]) shows it */
.drawer-services-panel {
  background-color: var(--color-surface-sand);
  padding: var(--space-2) 0;
}
.drawer-services-panel[hidden] { display: none !important; }

.drawer-services-panel a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px var(--space-5) 12px calc(var(--space-5) + 16px);
  text-decoration: none;
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-primary);
  min-height: 48px;
}

.drawer-services-panel a:hover { color: var(--color-accent); }
.drawer-services-panel a svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.drawer-footer {
  padding: var(--space-5);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.drawer-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  font-weight: 500;
  color: var(--color-primary);
}

/* Mobile click-to-call FAB */
.mobile-cta-fab {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.mobile-cta-fab:hover { background-color: var(--color-accent-hover); }
.mobile-cta-fab svg { width: 24px; height: 24px; }

@media (min-width: 768px) {
  .mobile-cta-fab { display: none; }
}

/* ── CARDS ────────────────────────────────────────────────── */

/* Service card */
.card-service {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.card-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-accent);
}

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

.card-service__icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.card-service__name {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.25;
  margin: 0;
}

.card-service__desc {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--line-height-body);
  flex: 1;
}

.card-service__price {
  font-family: var(--font-mono);
  font-size: var(--text-body-sm);
  color: var(--color-accent);
  font-weight: 400;
}

.card-service__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

.card-service__link:hover { color: var(--color-accent-hover); text-decoration: underline; }
.card-service__link svg { width: 16px; height: 16px; }

/* Project card */
.card-project {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-project__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-project__img-wrap img,
.card-project__img-wrap picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-project:hover .card-project__img-wrap img {
  transform: scale(1.03);
}

.card-project__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(to top, rgba(28,31,20,0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.card-project__title {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-text-inverse);
  margin: 0;
}

.card-project__body {
  padding: var(--space-4);
}

.card-project__name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-2);
}

.card-project__desc {
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
}

/* Testimonial card */
.card-testimonial {
  background-color: var(--color-surface-sand);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.card-testimonial__stars {
  display: flex;
  gap: 3px;
}

.card-testimonial__stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  fill: var(--color-accent);
}

.card-testimonial__quote {
  font-family: var(--font-heading);
  font-size: var(--text-body-lg);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.6;
  flex: 1;
}

.card-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.card-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-primary-light);
}

.card-testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }

.card-testimonial__name {
  font-weight: 600;
  font-size: var(--text-body);
  color: var(--color-text-primary);
  display: block;
}

.card-testimonial__location {
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
  display: block;
}

/* Value/Feature card */
.card-value {
  background-color: var(--color-surface-sand);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-5) var(--space-6);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.card-value__icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

.card-value__title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
}

.card-value__body {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
}

/* Stat card */
.stat-item {
  text-align: center;
  padding: var(--space-5) var(--space-6);
}

.stat-numeral {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-display-xl);
  font-weight: 700;
  color: var(--color-stat-numeral);
  line-height: 1;
  letter-spacing: var(--letter-spacing-display);
}

.stat-label {
  display: block;
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-inverse-muted);
  margin-top: var(--space-2);
}

/* ── GRIDS ────────────────────────────────────────────────── */
.grid-services {
  display: grid;
  grid-template-columns: 1fr; /* mobile base */
}

@media (min-width: 768px) {
  .grid-services { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
}

@media (min-width: 1024px) {
  .grid-services { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}

@media (min-width: 1280px) {
  .grid-services { grid-template-columns: repeat(4, 1fr); }
}

.grid-projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .grid-projects { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-projects { grid-template-columns: repeat(3, 1fr); }
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stats-grid .stat-item + .stat-item {
  border-left: 1px solid var(--color-border-dark);
}

@media (max-width: 767px) {
  .stats-grid .stat-item:nth-child(odd) { border-right: 1px solid var(--color-border-dark); border-left: none; }
  .stats-grid .stat-item:nth-child(3),
  .stats-grid .stat-item:nth-child(4) { border-top: 1px solid var(--color-border-dark); }
}

/* Related services row */
.grid-related {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 1024px) {
  .grid-related { grid-template-columns: repeat(3, 1fr); }
}

/* ── BENTO GRID ───────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile single column */
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
  .bento-cell--wide { grid-column: span 2; }
}

.bento-cell {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.bento-cell--dark {
  background-color: var(--color-surface-olive);
  border-color: transparent;
  color: var(--color-text-inverse);
}

.bento-cell--accent {
  background-color: var(--color-accent);
  border-color: transparent;
  color: #FFFFFF;
}

.bento-cell__icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.bento-cell--dark .bento-cell__icon,
.bento-cell--accent .bento-cell__icon {
  color: currentColor;
  opacity: 0.8;
}

.bento-cell__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
}

.bento-cell--dark .bento-cell__title,
.bento-cell--accent .bento-cell__title {
  color: inherit;
}

.bento-cell__body {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--line-height-body);
}

.bento-cell--dark .bento-cell__body,
.bento-cell--accent .bento-cell__body {
  color: rgba(255,255,255,0.8);
}

.bento-cell__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  margin-top: auto;
}

.bento-cell--dark .bento-cell__link,
.bento-cell--accent .bento-cell__link {
  color: rgba(255,255,255,0.9);
}

.bento-cell__link:hover { text-decoration: underline; }
.bento-cell__link svg { width: 16px; height: 16px; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.trust-bar-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-7);
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-primary);
}

.trust-bar-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.trust-bar-item--stat .stat-number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 400;
}

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero-fullbleed {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-fullbleed { min-height: 90vh; }
}

.hero-fullbleed__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-fullbleed__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fullbleed__scrim {
  position: absolute;
  inset: 0;
  background: rgba(28, 31, 20, 0.55);
  z-index: 1;
}

.hero-fullbleed__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--hero-py) 0;
}

.hero-fullbleed__inner {
  max-width: 720px;
}

.hero-service {
  min-height: 60vh;
}

@media (min-width: 1024px) {
  .hero-service { min-height: 75vh; }
}

.hero-centered {
  padding: var(--space-9) 0;
  text-align: center;
}

.hero-centered h1 {
  font-size: var(--text-display-md);
  letter-spacing: var(--letter-spacing-display);
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
  padding: var(--hero-py) 0;
}

@media (min-width: 768px) {
  .hero-split { grid-template-columns: 1fr 1fr; }
}

.hero-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

@media (max-width: 767px) {
  .hero-split__img { aspect-ratio: 16/9; order: -1; }
}

.hero-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 1px;
    border-top: 2px dashed var(--color-border);
    z-index: 0;
  }
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: var(--text-display-md);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.process-step__icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-2);
}

.process-step__desc {
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-body);
}

/* ── ECO PHILOSOPHY SECTION ───────────────────────────────── */
/* The two-column grid lives on the inner .eco-phi-grid (see below), NOT on
   the <section> — the section only wraps a centred .container. A grid here
   would place that container in the left track and cram content to one side. */

.eco-philosophy__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.eco-philosophy__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eco-philosophy__pull-quote {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  background: rgba(28, 31, 20, 0.75);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.eco-philosophy__pull-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-body-lg);
  color: var(--color-text-inverse);
  line-height: 1.4;
  margin: 0;
}

/* Pull-quote variant for about page */
.pull-quote-standalone {
  border-top: 2px solid var(--color-hairline);
  padding-top: var(--space-5);
  margin: var(--space-6) 0;
}

.pull-quote-standalone p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-display-md);
  color: var(--color-accent);
  line-height: 1.3;
  max-width: 720px;
}

/* ── PRICING ANCHOR BAND ──────────────────────────────────── */
/* No grid on the <section> — it only wraps a centred .container holding the
   header and a single .pricing-card. A grid here placed that container in the
   left track and crammed the card to one side. The card styles itself (below
   and at .pricing-card). */

.pricing-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

@media (min-width: 768px) { .pricing-price { align-items: flex-start; } }

.pricing-from {
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
}

.pricing-amount {
  font-family: var(--font-mono);
  font-size: var(--text-display-md);
  color: var(--color-accent);
  line-height: 1;
}

.pricing-unit {
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-body);
  color: var(--color-text-primary);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

@media (min-width: 768px) { .pricing-cta-col { align-items: flex-start; } }

.pricing-trust {
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb-nav {
  padding: var(--space-4) 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
}

.breadcrumb-item a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.breadcrumb-item a:hover { color: var(--color-accent); text-decoration: underline; }

.breadcrumb-item[aria-current="page"] {
  font-weight: 500;
  color: var(--color-text-primary);
}

.breadcrumb-item svg {
  width: 12px;
  height: 12px;
  color: var(--color-text-secondary);
}

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {}

.faq-item + .faq-item {
  border-top: 1px solid var(--color-border);
}

.faq-trigger {
  /* UA reset */
  background: transparent;
  border: none;
  cursor: pointer;
  /* Styles */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-primary);
  text-align: left;
  gap: var(--space-4);
  transition: background-color 0.15s ease;
  min-height: 56px;
}

.faq-trigger:hover { background-color: var(--color-surface-sand); }
.faq-trigger:focus-visible { outline: var(--border-focus); outline-offset: -3px; }

.faq-trigger[aria-expanded="true"] {
  border-top: 2px solid var(--color-accent);
  background-color: var(--color-surface-sand);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.faq-panel {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--line-height-body);
  background-color: var(--color-surface-sand);
}

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

/* ── BEFORE/AFTER SLIDER ──────────────────────────────────── */
.before-after-wrap {
  max-width: 800px;
  margin-inline: auto;
}

.before-after {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  user-select: none;
  touch-action: none;
}

.before-after__before,
.before-after__after {
  position: absolute;
  inset: 0;
}

.before-after__before { z-index: 1; }
.before-after__after  { z-index: 0; }

.before-after__after {
  clip-path: inset(0 0 0 50%);
}

.before-after__before img,
.before-after__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after__container {
  position: relative;
  aspect-ratio: 16/9;
}

.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 40px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.before-after__handle-inner {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.before-after__handle-inner svg { width: 20px; height: 20px; }

.before-after__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-surface);
  z-index: 2;
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after__label {
  position: absolute;
  bottom: var(--space-4);
  padding: var(--space-2) var(--space-3);
  background: rgba(28,31,20,0.7);
  color: var(--color-text-inverse);
  font-size: var(--text-body-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 4;
  pointer-events: none;
}

.before-after__label--before { left: var(--space-4); }
.before-after__label--after  { right: var(--space-4); }

.before-after-caption {
  margin-top: var(--space-4);
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.5;
}

/* ── CAROUSEL (Embla) ─────────────────────────────────────── */
.carousel-region {
  position: relative;
}

.embla {
  overflow: hidden;
}

.embla__container {
  display: flex;
  gap: var(--space-5);
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .embla--projects .embla__slide { flex: 0 0 calc(50% - 12px); }
}

@media (min-width: 1024px) {
  .embla--projects .embla__slide { flex: 0 0 calc(33.333% - 16px); }
  .embla--testimonials .embla__slide { flex: 0 0 calc(50% - 12px); }
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.carousel-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-accent);
  transition: background-color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}

.carousel-btn:hover { background-color: var(--color-surface-sand); border-color: var(--color-accent); }
.carousel-btn:focus-visible { outline: var(--border-focus); outline-offset: 2px; }
.carousel-btn svg { width: 20px; height: 20px; }

.carousel-dots {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.15s;
}

.carousel-dot.is-active { background-color: var(--color-accent); }
.carousel-dot:focus-visible { outline: var(--border-focus); outline-offset: 2px; }

.carousel-pause {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body-sm);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.carousel-pause:hover { color: var(--color-text-primary); }
.carousel-pause:focus-visible { outline: var(--border-focus); }
.carousel-pause svg { width: 20px; height: 20px; }

/* Aria live region for carousel announcements */
.carousel-live { display: none; }

/* ── LEAD FORM ────────────────────────────────────────────── */
.lead-form-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: start;
}

@media (min-width: 768px) {
  .lead-form-section { grid-template-columns: 1fr 1fr; }
}

.lead-form-copy { }

.lead-form-copy h2 {
  color: var(--color-heading-inverse);
  margin-bottom: var(--space-5);
}

.lead-form-trust {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.lead-form-trust li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-body);
  color: var(--color-text-inverse-muted);
}

.lead-form-trust li svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.form-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.form-label {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.form-label .required {
  color: var(--color-accent);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: var(--text-body);
  color: var(--color-text-primary);
  width: 100%;
  transition: border-color 0.15s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-secondary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border: 2px solid var(--color-focus);
}

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

.form-error-msg {
  font-size: var(--text-body-sm);
  color: var(--color-error);
}

.form-input--error { border-color: var(--color-error) !important; }

.form-honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.form-reassurance {
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: var(--space-3);
  line-height: 1.5;
}

.form-success {
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  color: var(--color-primary);
  font-size: var(--text-body);
  line-height: 1.5;
}

.form-error-banner {
  background: #FFF0F0;
  border: 1px solid var(--color-error);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  color: var(--color-error);
  font-size: var(--text-body);
  margin-bottom: var(--space-4);
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  padding: var(--space-9) 0;
  text-align: center;
}

.cta-banner--accent { background-color: var(--color-accent); }
.cta-banner--dark   { background-color: var(--color-surface-dark); }

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-display-md);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-5);
}

.cta-banner p {
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

/* ── SERVICE AREAS STRIP ──────────────────────────────────── */
.service-areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}

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

.service-areas__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 400px;
  margin-inline: auto;
}

/* ── FEATURE ALTERNATING ──────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
  padding: var(--space-9) 0;
}

@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row--reverse .feature-row__text { order: -1; }
}

.feature-row__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.feature-row__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── INCLUDES LIST ────────────────────────────────────────── */
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-body);
  color: var(--color-text-primary);
  line-height: 1.5;
}

.includes-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

/* ── TRUST BADGE ROW (inline service hero) ─────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body-sm);
  color: var(--color-text-inverse-muted);
  font-weight: 500;
}

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

/* ── CONTACT BLOCK ────────────────────────────────────────── */
.contact-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}

@media (min-width: 768px) {
  .contact-block { grid-template-columns: 1fr 1fr; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-body);
  color: var(--color-text-primary);
}

.contact-detail-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail-item a:hover { color: var(--color-accent); text-decoration: underline; }

.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface-sand);
}

.contact-map-wrap iframe,
.contact-map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* ── TEAM GRID ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.team-card__photo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--color-primary-light);
}

.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card__name { font-weight: 600; font-size: var(--text-body); }
.team-card__role { font-size: var(--text-body-sm); color: var(--color-text-secondary); }

/* ── PORTFOLIO FILTERS ────────────────────────────────────── */
.portfolio-filters {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}

.filter-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.filter-btn.is-active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.filter-btn:focus-visible { outline: var(--border-focus); }

/* ── CONSENT BANNER ───────────────────────────────────────── */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background-color: var(--color-surface-dark);
  box-shadow: 0 -4px 20px rgba(28,31,20,0.25);
  padding: var(--space-5) var(--space-gutter);
}

@media (prefers-reduced-motion: reduce) {
  .consent-banner { animation: none !important; }
}

.consent-banner[hidden] { display: none !important; }

.consent-banner-inner {
  max-width: var(--space-container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}


.consent-btn-manage {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--color-text-inverse-muted);
  text-decoration: underline;
  padding: 4px;
}

.consent-btn-manage:hover { color: var(--color-text-inverse); }
.consent-btn-manage:focus-visible { outline: var(--border-focus); }

/* Cookie preferences modal */
.cookie-prefs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,31,20,0.6);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}

.cookie-prefs-overlay[hidden] { display: none; }

.cookie-prefs-dialog {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  width: 100%;
  padding: var(--space-7);
  position: relative;
}

.cookie-prefs-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
}

.cookie-prefs-close:hover { color: var(--color-text-primary); }
.cookie-prefs-close:focus-visible { outline: var(--border-focus); }

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-of-type { border-bottom: none; }

.cookie-category__info {}
.cookie-category__name { font-weight: 600; font-size: var(--text-body); margin-bottom: var(--space-2); }
.cookie-category__desc { font-size: var(--text-body-sm); color: var(--color-text-secondary); }

/* Toggle switch */
.cookie-toggle {
  position: relative;
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  width: 44px;
  height: 24px;
  appearance: none;
  background: var(--color-border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--color-primary);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: white;
  top: 3px;
  left: 3px;
  transition: left 0.2s;
}

.cookie-toggle input[type="checkbox"]:checked::after { left: 23px; }
.cookie-toggle input[type="checkbox"]:focus-visible { outline: var(--border-focus); outline-offset: 2px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-surface-dark);
  padding-top: var(--space-10);
  padding-bottom: var(--space-6);
}

.footer-inner {
  max-width: var(--space-container);
  margin-inline: auto;
  padding-inline: var(--space-gutter);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-cols { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: var(--space-6); }
}

.footer-col {}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: var(--text-body-sm);
  color: var(--color-text-inverse-muted);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-inverse-muted);
  border-radius: var(--radius-md);
  transition: color 0.15s;
  text-decoration: none;
}

.footer-social a:hover { color: var(--color-text-inverse); }
.footer-social svg { width: 20px; height: 20px; }

.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-inverse-muted);
  margin-bottom: var(--space-4);
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a,
.footer-links button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--color-text-inverse-muted);
  text-decoration: none;
  padding: 0;
  transition: color 0.15s;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--color-text-inverse);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-body-sm);
  color: var(--color-text-inverse-muted);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-text-inverse-muted);
}

.footer-contact-item a {
  color: var(--color-text-inverse-muted);
  text-decoration: none;
}

.footer-contact-item a:hover { color: var(--color-text-inverse); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-legal);
  color: var(--color-text-inverse-muted);
}

/* ── LEGAL CONTENT ────────────────────────────────────────── */
.legal-content {
  max-width: var(--space-container-narrow);
  margin-inline: auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  margin-top: var(--space-7);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  font-weight: 600;
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}

.legal-content p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.legal-content ul, .legal-content ol {
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-content li {
  margin-bottom: var(--space-2);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-5);
  font-size: var(--text-body-sm);
}

.legal-content table th,
.legal-content table td {
  border: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  vertical-align: top;
}

.legal-content table th {
  background: var(--color-surface-sand);
  font-weight: 600;
}

.legal-content strong { font-weight: 600; color: var(--color-text-primary); }

.legal-notice {
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  font-size: var(--text-body-sm);
  color: var(--color-accent);
}

/* ── LOGO CLOUD / MARQUEE ─────────────────────────────────── */
.logo-marquee-wrap {
  overflow: hidden;
  position: relative;
}

.logo-marquee {
  display: flex;
  gap: var(--space-8);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.logo-marquee img {
  height: 48px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s, opacity 0.2s;
}

.logo-marquee img:hover { filter: none; opacity: 1; }

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

@media (prefers-reduced-motion: reduce) {
  .logo-marquee { animation-play-state: paused; }
}

/* ── 404 PAGE ─────────────────────────────────────────────── */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-9) 0;
}

.page-404__numeral {
  font-family: var(--font-heading);
  font-size: var(--text-display-xl);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-4);
}

.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
}

/* ── WHAT'S INCLUDED SECTION ─────────────────────────────── */
/* Two-column grid lives on the inner .includes-grid (see below), NOT on the
   <section>, which only wraps a centred .container. A grid on the section
   would place that container in the left track and cram content to one side. */

.includes-section__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.includes-section__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── CARD VARIANTS (BEM-free selectors from templates) ───── */
.card-service-icon { color: var(--color-primary); margin-bottom: var(--space-2); }
.card-service-name { font-family: var(--font-heading); font-size: var(--text-h4); font-weight: 600; color: var(--color-heading); margin: 0; }
.card-service-desc { font-size: var(--text-body); color: var(--color-text-secondary); flex: 1; line-height: 1.55; }
.card-service-price { font-family: var(--font-mono); font-size: var(--text-body-sm); color: var(--color-accent); }
.card-service-link { display: inline-flex; align-items: center; gap: 4px; font-size: var(--text-body-sm); font-weight: 600; color: var(--color-accent); text-decoration: none; }
.card-service-link:hover { color: var(--color-accent-hover); text-decoration: underline; }

/* ── GRID: SERVICES ──────────────────────────────────────── */
.grid-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 540px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-services { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .grid-services { grid-template-columns: repeat(4, 1fr); } }

/* ── GRID: PROJECTS ──────────────────────────────────────── */
.grid-projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) { .grid-projects { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-projects { grid-template-columns: repeat(3, 1fr); } }

/* ── GRID: RELATED ───────────────────────────────────────── */
.grid-related {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) { .grid-related { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-related { grid-template-columns: repeat(3, 1fr); } }

/* ── GRID: TESTIMONIALS ──────────────────────────────────── */
.grid-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) { .grid-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid-testimonials { grid-template-columns: repeat(3, 1fr); } }

/* ── GRID: VALUES ────────────────────────────────────────── */
.grid-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-6);
}
@media (min-width: 640px) { .grid-values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-values { grid-template-columns: repeat(3, 1fr); } }

/* ── CARD: PROJECT ───────────────────────────────────────── */
.card-project {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-dark);
  display: flex;
  flex-direction: column;
}
.card-project-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.card-project picture { display: block; }
.card-project picture img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.card-project-caption {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.card-project-tags { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.card-project-loc { font-size: var(--text-body-sm); color: var(--color-text-inverse-muted); display: flex; align-items: center; gap: 4px; }
.card-project-desc { font-size: var(--text-body-sm); color: var(--color-text-inverse-muted); line-height: 1.5; flex: 1; }
.card-project-link { font-size: var(--text-body-sm); font-weight: 600; color: var(--color-accent-light); text-decoration: none; }
.card-project-link:hover { color: #fff; }
.card-project h3 { color: var(--color-text-inverse); font-size: var(--text-h4); font-weight: 600; }

/* ── CARD: TESTIMONIAL ───────────────────────────────────── */
.card-testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.card-testimonial-stars { display: flex; gap: 2px; color: var(--color-accent); }
.card-testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.card-testimonial-quote { font-size: var(--text-body); line-height: 1.6; color: var(--color-text-primary); flex: 1; font-style: italic; }
.card-testimonial-footer { margin-top: auto; }
.card-testimonial-author { display: flex; flex-direction: column; gap: 2px; font-style: normal; }
.card-testimonial-author strong { font-weight: 600; color: var(--color-text-primary); font-size: var(--text-body); }
.card-testimonial-author span { font-size: var(--text-body-sm); color: var(--color-text-secondary); }

/* ── CARD: VALUE ─────────────────────────────────────────── */
.card-value {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.card-value-icon { color: var(--color-primary); }
.card-value-title { font-size: var(--text-h4); font-weight: 600; color: var(--color-heading); }

/* ── HERO: FULLBLEED ─────────────────────────────────────── */
.hero-fullbleed {
  position: relative;
  min-height: clamp(500px, 85vh, 800px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-bg picture { width: 100%; height: 100%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,31,20,0.85) 0%, rgba(28,31,20,0.4) 60%, rgba(28,31,20,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}
.hero-body { max-width: 680px; }
.hero-h1 {
  font-family: var(--font-heading);
  font-size: var(--text-display-lg);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: var(--letter-spacing-display);
  margin-bottom: var(--space-5);
}
.hero-lead {
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body-sm);
  color: rgba(255,255,255,0.7);
}
.hero-trust li svg { color: var(--color-accent); flex-shrink: 0; }

/* ── HERO: CENTERED (for services hub, about, contact, portfolio) */
.hero-centered {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
  text-align: center;
}
.hero-centered-body { max-width: 680px; margin-inline: auto; }
.hero-centered h1 {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--space-4);
}
.hero-centered .hero-lead { color: var(--color-text-secondary); margin-inline: auto; margin-bottom: var(--space-6); }

/* ── HERO: SERVICE ───────────────────────────────────────── */
.hero-service {
  position: relative;
  min-height: clamp(400px, 60vh, 600px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-service-bg { position: absolute; inset: 0; }
.hero-service-bg picture { width: 100%; height: 100%; }
.hero-service-bg-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,31,20,0.9) 0%, rgba(28,31,20,0.4) 70%, rgba(28,31,20,0.1) 100%);
}
.hero-service-content { position: relative; z-index: 1; padding-top: var(--space-8); padding-bottom: var(--space-8); }
.hero-service-badge { margin-bottom: var(--space-3); }
.hero-service-h1 {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: var(--letter-spacing-h2);
  margin-bottom: var(--space-4);
  max-width: 680px;
}
.hero-service-intro {
  font-size: var(--text-body);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: var(--space-4);
}
.hero-service-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.price-from { font-size: var(--text-body-sm); color: rgba(255,255,255,0.6); }
.price-amount { font-family: var(--font-mono); font-size: var(--text-display-md); color: var(--color-accent); font-weight: 700; }
.price-unit { font-size: var(--text-body-sm); color: rgba(255,255,255,0.6); }
.hero-service-actions { margin-bottom: var(--space-4); }

/* ── ECO PHILOSOPHY GRID ─────────────────────────────────── */
.eco-phi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .eco-phi-grid { grid-template-columns: 1fr 1fr; }
  .eco-philosophy--reverse .eco-phi-image { order: -1; }
}
.eco-phi-content { display: flex; flex-direction: column; gap: var(--space-4); }
.eco-phi-content p { color: var(--color-text-secondary); line-height: 1.7; }
.eco-phi-image { border-radius: var(--radius-xl); overflow: hidden; }
.eco-phi-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* ── PULL QUOTE INLINE ───────────────────────────────────── */
.pull-quote-inline {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-5);
  margin-block: var(--space-4);
}
.pull-quote-inline p {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-style: italic;
  color: var(--color-accent);
  line-height: 1.3;
  margin: 0;
}

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}
@media (min-width: 540px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.process-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-inverse-muted);
  background: var(--color-surface-dark);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}
.process-step-icon { color: var(--color-primary); }
.process-step-title { font-size: var(--text-h4); font-weight: 600; color: var(--color-heading); }
.process-step p { font-size: var(--text-body); color: var(--color-text-secondary); line-height: 1.6; }

/* ── STATS GRID ──────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-display-md);
  font-weight: 700;
  color: var(--color-stat-numeral);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-number--text { font-family: var(--font-heading); font-style: italic; }
.stat-label { font-size: var(--text-body-sm); color: var(--color-text-secondary); line-height: 1.4; }
.stats-tagline {
  text-align: center;
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-3);
}

/* ── SECTION CTA ROW ─────────────────────────────────────── */
.section-cta-row {
  text-align: center;
  margin-top: var(--space-7);
}
.section-lead {
  margin-top: var(--space-3);
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  max-width: 65ch;
}
.section-header--center .section-lead { margin-inline: auto; }

/* ── BENTO GRID ──────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
  .bento-cell--wide { grid-column: span 2; }
}
.bento-cell {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 220px;
}
.bento-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bento-icon { color: var(--color-primary); }
.bento-cell h3 { font-size: var(--text-h4); font-weight: 600; color: var(--color-heading); }
.bento-cell p { font-size: var(--text-body-sm); color: var(--color-text-secondary); flex: 1; line-height: 1.5; }
.bento-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-2); margin-top: auto; }
.bento-price { font-family: var(--font-mono); font-size: var(--text-body-sm); color: var(--color-accent); }
.bento-link { font-size: var(--text-body-sm); font-weight: 600; color: var(--color-accent); text-decoration: none; }
.bento-link:hover { text-decoration: underline; }
.bento-bg-image { position: absolute; inset: 0; z-index: -1; opacity: 0.08; pointer-events: none; }
.bento-bg-img { width: 100%; height: 100%; object-fit: cover; }
.bento-bg-image picture { width: 100%; height: 100%; }

/* ── EMBLA CAROUSEL ──────────────────────────────────────── */
.embla { width: 100%; overflow: hidden; position: relative; }
.embla__viewport { overflow: hidden; width: 100%; }
.embla__container { display: flex; align-items: stretch; }

.embla--projects .embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 var(--space-2);
}
@media (min-width: 640px) { .embla--projects .embla__slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .embla--projects .embla__slide { flex: 0 0 33.333%; } }

.embla--testimonials .embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 var(--space-2);
}
@media (min-width: 768px) { .embla--testimonials .embla__slide { flex: 0 0 50%; } }
@media (min-width: 1200px) { .embla--testimonials .embla__slide { flex: 0 0 33.333%; } }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.carousel-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.carousel-btn:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.carousel-btn:focus-visible { outline: var(--border-focus); }
.carousel-btn--prev svg { transform: rotate(180deg); }
.carousel-dots { display: flex; gap: var(--space-2); }
.carousel-dot {
  background: var(--color-border);
  border: none;
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.carousel-dot.is-active { background: var(--color-accent); transform: scale(1.3); }
.carousel-dot:focus-visible { outline: var(--border-focus); }
.carousel-pause-row { text-align: center; margin-top: var(--space-3); }
.carousel-pause {
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-body-sm);
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  transition: color 0.15s, border-color 0.15s;
}
.carousel-pause:hover { color: var(--color-text-primary); border-color: var(--color-text-secondary); }
.carousel-pause:focus-visible { outline: var(--border-focus); }

/* ── BEFORE/AFTER SLIDER ─────────────────────────────────── */
.before-after {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  aspect-ratio: 16/9;
  background: var(--color-surface-sand);
}
.ba-after { position: absolute; inset: 0; }
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-img picture { width: 100%; height: 100%; }
.before-after picture { display: block; width: 100%; height: 100%; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 10;
}
.ba-handle:focus-visible { outline: var(--border-focus); }
.ba-handle-line { flex: 1; width: 2px; background: rgba(255,255,255,0.8); }
.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.ba-label {
  position: absolute;
  top: var(--space-3);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(28,31,20,0.6);
  color: rgba(255,255,255,0.9);
}
.ba-label--before { left: var(--space-3); }
.ba-label--after { right: var(--space-3); }
.ba-caption { text-align: center; font-size: var(--text-body-sm); color: var(--color-text-secondary); margin-top: var(--space-3); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb-wrapper { padding-block: var(--space-3); border-bottom: 1px solid var(--color-border); }
.breadcrumb-nav { overflow-x: auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--text-body-sm);
}
.breadcrumb-item { display: flex; align-items: center; gap: 4px; }
.breadcrumb-item:not(:last-child)::after { content: '/'; color: var(--color-text-secondary); opacity: 0.5; margin-left: 4px; }
.breadcrumb-item a { color: var(--color-primary); text-decoration: none; font-weight: 500; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item--current span { color: var(--color-text-secondary); }

/* ── FAQ LIST ────────────────────────────────────────────── */
.faq-section { padding: 0; }
.faq-list { margin: 0; padding: 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { margin: 0; }
.faq-trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.4;
}
.faq-trigger:focus-visible { outline: var(--border-focus); outline-offset: 2px; }
.faq-trigger-text { flex: 1; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-accent); transition: transform 0.2s ease; }
.faq-panel { padding: 0 0 var(--space-5); }
.faq-panel[hidden] { display: none; }
.faq-answer { font-size: var(--text-body); color: var(--color-text-secondary); line-height: 1.7; }

/* ── CONSENT BANNER (additional) ────────────────────────── */
.consent-text { flex: 1; min-width: 220px; }
.consent-title { font-weight: 600; color: var(--color-text-inverse); font-size: var(--text-body); display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-2); }
.consent-body { font-size: var(--text-body-sm); color: var(--color-text-inverse-muted); line-height: 1.5; }
.consent-body a { color: var(--color-text-inverse-muted); text-decoration: underline; }
.consent-body a:hover { color: var(--color-text-inverse); }
.consent-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }

.prefs-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-5); }
.prefs-title { font-family: var(--font-heading); font-size: var(--text-h3); font-weight: 600; }
.prefs-close {
  background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: var(--color-text-secondary); border-radius: var(--radius-md);
}
.prefs-close:hover { color: var(--color-text-primary); }
.prefs-close:focus-visible { outline: var(--border-focus); }
.prefs-intro { font-size: var(--text-body-sm); color: var(--color-text-secondary); margin-bottom: var(--space-5); }
.prefs-body { margin-bottom: var(--space-5); }
.prefs-footer { display: flex; gap: var(--space-3); justify-content: flex-end; flex-wrap: wrap; padding-top: var(--space-5); border-top: 1px solid var(--color-border); }

.cookie-category { padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); }
.cookie-category:last-child { border-bottom: none; }
.cookie-category-header { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.cookie-category-name { font-weight: 600; font-size: var(--text-body); margin-bottom: var(--space-1); }
.cookie-category-desc { font-size: var(--text-body-sm); color: var(--color-text-secondary); line-height: 1.5; }
.cookie-always-on { font-size: var(--text-body-sm); color: var(--color-primary); font-weight: 500; white-space: nowrap; }
.cookie-toggle { display: flex; align-items: center; cursor: pointer; }
.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle-track {
  width: 44px; height: 24px; background: var(--color-border); border-radius: 12px;
  position: relative; transition: background 0.2s; flex-shrink: 0;
}
.cookie-toggle input:checked + .cookie-toggle-track { background: var(--color-primary); }
.cookie-toggle-thumb {
  position: absolute; width: 18px; height: 18px; background: #fff; border-radius: 9px;
  top: 3px; left: 3px; transition: left 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle-track .cookie-toggle-thumb { left: 23px; }
.cookie-toggle:focus-within .cookie-toggle-track { outline: var(--border-focus); outline-offset: 2px; }

/* ── FOOTER (template variant) ───────────────────────────── */
.footer-body { padding-top: var(--space-10); padding-bottom: var(--space-6); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: var(--space-5); } }
.footer-col--brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-logo { display: inline-block; text-decoration: none; }
.footer-logo img { height: 40px; width: auto; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-body-sm); color: var(--color-text-inverse-muted); }
.footer-contact-list a { color: var(--color-text-inverse-muted); text-decoration: none; }
.footer-contact-list a:hover { color: var(--color-text-inverse); text-decoration: underline; }
.footer-contact-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--color-text-inverse-muted); }
.footer-bottom { border-top: 1px solid var(--color-border-dark); padding-block: var(--space-5); }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: var(--text-legal); color: var(--color-text-inverse-muted); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); list-style: none; padding: 0; margin: 0; }
.footer-legal-links a { font-size: var(--text-legal); color: var(--color-text-inverse-muted); text-decoration: none; }
.footer-legal-links a:hover { color: var(--color-text-inverse); text-decoration: underline; }

/* ── DRAWER (template variant) ───────────────────────────── */
.mobile-drawer:not([hidden]) { display: block; }
.drawer-nav-list { list-style: none; padding: var(--space-3) 0; margin: 0; flex: 1; overflow-y: auto; }
.drawer-item--accordion { border-bottom: 1px solid var(--color-border); }
.drawer-services-trigger .drawer-chevron svg { transition: transform 0.2s; }
.drawer-services-trigger[aria-expanded="true"] .drawer-chevron svg { transform: rotate(180deg); }
.drawer-services-panel:not([hidden]) { display: block; }
.drawer-services-group { padding: var(--space-2) 0; }
.drawer-group-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-secondary); padding: var(--space-2) var(--space-5); }
.drawer-service-link {
  display: flex; align-items: center; gap: var(--space-3);
  padding: 10px var(--space-5) 10px calc(var(--space-5) + 8px);
  text-decoration: none; font-size: var(--text-body-sm); color: var(--color-text-primary);
  min-height: 44px; transition: background 0.15s;
}
.drawer-service-link:hover { background: var(--color-accent-light); color: var(--color-accent); }
.drawer-service-link--active { color: var(--color-accent); font-weight: 600; }
.drawer-service-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-primary); }
.drawer-view-all { display: block; padding: var(--space-3) var(--space-5); font-size: var(--text-body-sm); font-weight: 600; color: var(--color-accent); text-decoration: none; }
.drawer-view-all:hover { text-decoration: underline; }
.drawer-phone { display: flex; align-items: center; justify-content: center; gap: var(--space-2); text-decoration: none; font-size: var(--text-body-sm); color: var(--color-primary); font-weight: 500; padding: var(--space-2); }

/* ── FORM (template variant) ─────────────────────────────── */
.lead-form-wrapper { display: flex; flex-direction: column; gap: var(--space-5); }
.lead-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: var(--text-body-sm); font-weight: 600; color: var(--color-text-primary); }
.form-required { color: var(--color-error); }
.form-optional { font-weight: 400; color: var(--color-text-secondary); }
.form-input {
  width: 100%; padding: 12px 14px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); font-size: var(--text-body); font-family: var(--font-body);
  color: var(--color-text-primary); transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(74,94,53,0.12); outline: none; }
.form-input--error { border-color: var(--color-error); }
.form-input--error:focus { box-shadow: 0 0 0 3px rgba(184,53,53,0.12); }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='%235A5E4E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-field-error { font-size: var(--text-body-sm); color: var(--color-error); min-height: 1.2em; }
.form-submit-row { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-3); }
.form-success { display: flex; align-items: flex-start; gap: var(--space-4); background: var(--color-primary-light); border: 1px solid var(--color-primary); border-radius: var(--radius-md); padding: var(--space-5); color: var(--color-primary); }
.form-success-title { font-weight: 600; margin-bottom: var(--space-1); }
.form-error-msg { display: flex; align-items: flex-start; gap: var(--space-3); background: #FFF0F0; border: 1px solid var(--color-error); border-radius: var(--radius-md); padding: var(--space-4); color: var(--color-error); font-size: var(--text-body); }

/* ── AREAS SECTION (home) ────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
.island-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.island-item { display: flex; align-items: flex-start; gap: var(--space-3); }
.island-icon { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-section {}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 380px; } }
.contact-block { background: var(--color-surface-sand); border-radius: var(--radius-xl); padding: var(--space-6); margin-bottom: var(--space-5); }
.contact-block--process { background: var(--color-primary-light); }
.contact-block-heading { font-size: var(--text-h4); font-weight: 600; color: var(--color-heading); margin-bottom: var(--space-5); }
.contact-detail-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.contact-detail-list li { display: flex; align-items: flex-start; gap: var(--space-3); }
.contact-detail-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-primary); margin-top: 2px; }
.contact-detail-label { font-size: var(--text-body-sm); color: var(--color-text-secondary); font-weight: 500; margin-bottom: 2px; }
.contact-detail-value { font-size: var(--text-body); color: var(--color-text-primary); text-decoration: none; font-weight: 500; }
.contact-detail-value:hover { color: var(--color-accent); text-decoration: underline; }
.contact-process-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-4); counter-reset: proc-counter; }
.contact-process-list li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-body-sm); color: var(--color-text-secondary); line-height: 1.6; }
.contact-process-num { width: 24px; height: 24px; border-radius: var(--radius-full); background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.map-embed-wrapper { border-radius: var(--radius-lg); overflow: hidden; margin-top: var(--space-7); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.about-facts li { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-body-sm); color: var(--color-text-secondary); }
.about-facts li svg { color: var(--color-primary); flex-shrink: 0; }
.credentials-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.credentials-list li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-body); color: var(--color-text-secondary); line-height: 1.6; }
.credentials-list li svg { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

/* ── LEGAL PAGE ──────────────────────────────────────────── */
.legal-last-updated { font-size: var(--text-body-sm); color: var(--color-text-secondary); margin-bottom: var(--space-7); padding-bottom: var(--space-5); border-bottom: 1px solid var(--color-border); }
.legal-table { width: 100%; border-collapse: collapse; margin-block: var(--space-5); font-size: var(--text-body-sm); }
.legal-table th, .legal-table td { border: 1px solid var(--color-border); padding: var(--space-3) var(--space-4); text-align: left; vertical-align: top; }
.legal-table th { background: var(--color-surface-sand); font-weight: 600; color: var(--color-text-primary); }
.legal-form-template { background: var(--color-surface-sand); border-radius: var(--radius-md); padding: var(--space-5); margin-top: var(--space-4); font-size: var(--text-body-sm); color: var(--color-text-secondary); }
.cookie-settings-link { margin-top: var(--space-6); }

/* ── SERVICE PAGE SPECIFICS ──────────────────────────────── */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: start;
}
@media (min-width: 768px) { .includes-grid { grid-template-columns: 1fr 1fr; } }
.includes-image { border-radius: var(--radius-xl); overflow: hidden; }
.includes-check { color: var(--color-primary); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.includes-item { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-body); color: var(--color-text-primary); line-height: 1.5; margin-bottom: var(--space-3); }
.pricing-card {
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.pricing-card-price { display: flex; align-items: baseline; gap: var(--space-2); }
.pricing-label { font-size: var(--text-body-sm); color: var(--color-text-secondary); }
.pricing-amount { font-family: var(--font-mono); font-size: var(--text-display-md); color: var(--color-accent); font-weight: 700; }
.pricing-unit { font-size: var(--text-body-sm); color: var(--color-text-secondary); }
.pricing-card p { font-size: var(--text-body); color: var(--color-text-secondary); line-height: 1.7; max-width: 55ch; }
.related-services {}
.before-after-section {}

/* ── ERROR CODE (404) ────────────────────────────────────── */
.error-code {
  font-family: var(--font-heading);
  font-size: var(--text-display-xl);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-4);
}

/* ── FILTER BTN ACTIVE fix ───────────────────────────────── */
.filter-btn--active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

/* ── FOOTER LEGAL LINKS BUTTON ───────────────────────────── */
.footer-legal-links-btn {
  background: none; border: none; cursor: pointer;
  font-size: var(--text-legal); color: var(--color-text-inverse-muted);
  text-decoration: none; padding: 0; font-family: inherit;
}
.footer-legal-links-btn:hover { color: var(--color-text-inverse); text-decoration: underline; }
.footer-legal-links-btn:focus-visible { outline: var(--border-focus); outline-offset: 2px; }
