/**
 * Simply Enclosures — mockup-aligned styles
 * Navy / white / sky blue contractor landing page
 */

:root {
  --se-navy: #0a3550;
  --se-navy-deep: #062536;
  --se-blue: #1a6b93;
  --se-accent: #2f9fd0;
  --se-sky: #e8f3f9;
  --se-mist: #f5f9fc;
  --se-white: #ffffff;
  --se-ink: #1a2b36;
  --se-muted: #5a6d7a;
  --se-line: rgba(10, 53, 80, 0.12);
  --se-overlay: linear-gradient(105deg, rgba(6, 37, 54, 0.82) 0%, rgba(10, 53, 80, 0.55) 55%, rgba(10, 53, 80, 0.35) 100%);
  --se-font: "Outfit", system-ui, sans-serif;
  --se-radius: 10px;
  --se-header-h: 80px;
  --se-max: 1180px;
  --se-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --se-shadow: 0 12px 32px rgba(6, 37, 54, 0.1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--se-header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--se-font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--se-ink);
  background: var(--se-white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 52px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--se-blue); text-decoration: none; }
a:hover { color: var(--se-navy); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--se-navy); color: #fff; padding: 0.75rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 0; }

.container {
  width: min(100% - 2rem, var(--se-max));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 6px;
  font-family: var(--se-font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--se-ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn__icon { flex-shrink: 0; }

.btn--navy,
.btn--primary {
  background: var(--se-navy);
  color: #fff;
  border-color: var(--se-navy);
}
.btn--navy:hover,
.btn--primary:hover {
  background: var(--se-blue);
  border-color: var(--se-blue);
  color: #fff;
}

.btn--accent {
  background: var(--se-accent);
  color: #fff;
  border-color: var(--se-accent);
}
.btn--accent:hover {
  background: var(--se-blue);
  border-color: var(--se-blue);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--se-navy);
  border-color: #fff;
}
.btn--light:hover {
  background: var(--se-sky);
  color: var(--se-navy);
}

.btn--outline-navy {
  background: transparent;
  color: var(--se-navy);
  border-color: var(--se-navy);
}
.btn--outline-navy:hover {
  background: var(--se-navy);
  color: #fff;
}

.btn--sm { min-height: 42px; padding: 0.55rem 1.1rem; font-size: 0.8rem; }
.btn--block { width: 100%; }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--se-line);
  box-shadow: 0 6px 20px rgba(6, 37, 54, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--se-header-h);
  position: relative;
}

.site-header__logo {
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--se-navy);
}
.logo__mark { display: flex; flex-shrink: 0; }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo__text strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo__tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--se-blue);
  margin-top: 0.15rem;
}
.logo__img { max-height: 52px; width: auto; }

/* Custom logo — sized for the header bar only */
.logo--emblem {
  display: block;
  line-height: 0;
}
.logo--emblem .custom-logo-link {
  display: block;
  line-height: 0;
}
.logo--emblem .custom-logo,
.logo--emblem img {
  display: block;
  width: auto;
  height: auto;
  max-height: 56px;
  max-width: min(46vw, 140px);
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo--emblem .custom-logo,
  .logo--emblem img {
    max-height: 64px;
    max-width: 160px;
  }
}

.logo--footer {
  color: #fff;
}
.logo--footer .custom-logo,
.logo--footer img {
  max-height: 64px !important;
  max-width: 140px !important;
}
.logo--footer .logo__tag { color: rgba(255, 255, 255, 0.7); }
.logo--footer .logo__mark svg rect:first-child { fill: #1a6b93; }

.nav__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.15rem;
}
.nav__link {
  color: var(--se-navy);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__link:hover { color: var(--se-blue); }

.site-header__actions {
  display: none;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--se-navy);
  font-weight: 700;
  font-size: 0.95rem;
}
.header-phone__icon { color: var(--se-blue); }

.nav-toggle {
  width: 44px; height: 44px; border: 0; background: transparent;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 10px; cursor: pointer;
}
.nav-toggle__bar {
  display: block; height: 2px; width: 100%; background: var(--se-navy);
  transition: transform 0.25s var(--se-ease), opacity 0.2s ease;
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: 0; z-index: 110;
  pointer-events: none; visibility: hidden;
}
.mobile-drawer.is-open { pointer-events: auto; visibility: visible; }
.mobile-drawer__panel {
  position: absolute; top: 0; right: 0;
  width: min(86vw, 340px); height: 100%;
  background: #fff; padding: 5.5rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--se-ease);
  z-index: 2;
  box-shadow: -12px 0 40px rgba(6, 37, 54, 0.15);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__list { list-style: none; margin: 0 0 1rem; padding: 0; }
.mobile-drawer__list a {
  display: block; padding: 0.85rem 0;
  border-bottom: 1px solid var(--se-line);
  color: var(--se-navy); font-weight: 700; text-transform: uppercase;
  font-size: 0.9rem; letter-spacing: 0.04em;
}
.mobile-drawer__backdrop {
  position: absolute; inset: 0; border: 0;
  background: rgba(6, 37, 54, 0.45); opacity: 0;
  transition: opacity 0.3s ease; cursor: pointer;
}
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}
.hero__media,
.hero__overlay { position: absolute; inset: 0; }
.hero__bg {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: se-ken 18s var(--se-ease) forwards;
}
@keyframes se-ken { to { transform: scale(1); } }
.hero__overlay { background: var(--se-overlay); }
.hero__inner { position: relative; z-index: 1; padding: 5.5rem 0 4.5rem; }
.hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.hero__title {
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.hero__subtitle {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.92);
}

/* Trust bar */
.trust-bar {
  background: var(--se-navy);
  color: #fff;
  padding: 1.35rem 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.trust-bar__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--se-accent);
}
.trust-bar__icon svg { width: 18px; height: 18px; }
.trust-bar__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

/* Sections */
.section { padding: 4.75rem 0; }
.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--se-accent);
}
.section-header { max-width: 42rem; margin-bottom: 2.5rem; }
.section-header--center {
  text-align: center;
  margin-inline: auto;
}
.section-header__title {
  margin: 0 0 0.65rem;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--se-navy);
}
.section-header__title--light { color: #fff; }
.section-header__text {
  margin: 0;
  color: var(--se-muted);
  font-size: 1.02rem;
}

/* Services */
.services { background: var(--se-mist); }
.services__grid {
  display: grid;
  gap: 1.35rem;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: var(--se-shadow);
  transition: transform 0.3s var(--se-ease);
}
.service-card:hover { transform: translateY(-4px); }
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: var(--se-sky);
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--se-ease);
}
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--se-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(10, 53, 80, 0.25);
  z-index: 2;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__body {
  padding: 2.25rem 1.35rem 1.5rem;
  text-align: center;
}
.service-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--se-navy);
}
.service-card__desc {
  margin: 0 0 0.85rem;
  color: var(--se-muted);
  font-size: 0.95rem;
}
.service-card__link {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--se-accent);
}
.service-card__link:hover { color: var(--se-navy); }

/* Why */
.why__grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
.why__lead { color: var(--se-muted); margin: 0 0 1.35rem; }
.why__list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  color: var(--se-ink);
  font-weight: 500;
}
.why__check { flex-shrink: 0; margin-top: 0.1rem; }
.why__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--se-shadow);
}
.why__media img { width: 100%; height: 100%; object-fit: cover; }

/* Gallery */
.gallery { background: #fff; }
.gallery__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}
.gallery__grid--single { grid-template-columns: 1fr; }
.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0; padding: 0; border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--se-sky);
  font: inherit;
  text-align: left;
  box-shadow: var(--se-shadow);
}
.gallery__item:first-child { grid-column: span 2; }
.gallery__grid--single .gallery__item:first-child { grid-column: span 1; }
.gallery__item:focus-visible {
  outline: 2px solid var(--se-accent);
  outline-offset: 3px;
}
.gallery__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s var(--se-ease), opacity 0.35s ease;
}
.gallery__item:first-child .gallery__thumb { aspect-ratio: 16 / 10; }
.gallery__thumb:not(.is-loaded) {
  opacity: 0.45;
  background-image: linear-gradient(110deg, #d9e6ef 25%, #f0f6fa 40%, #d9e6ef 55%);
  background-size: 200% 100%;
  animation: se-shimmer 1.2s ease-in-out infinite;
}
@keyframes se-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.gallery__item:hover .gallery__thumb,
.gallery__item:focus-visible .gallery__thumb {
  transform: scale(1.05);
}
.gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2.25rem 0.9rem 0.85rem;
  background: linear-gradient(transparent, rgba(6, 37, 54, 0.88));
  color: #fff; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  pointer-events: none;
}
.gallery__zoom {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 0.65rem;
  color: #fff; opacity: 1; pointer-events: none;
}
.gallery__zoom svg {
  width: 34px; height: 34px; padding: 7px; border-radius: 999px;
  background: rgba(6, 37, 54, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .gallery__zoom {
    opacity: 0; align-items: center; justify-content: center; padding: 0;
    background: rgba(6, 37, 54, 0);
    transition: opacity 0.25s ease, background 0.25s ease;
  }
  .gallery__item:hover .gallery__zoom,
  .gallery__item:focus-visible .gallery__zoom {
    opacity: 1; background: rgba(6, 37, 54, 0.35);
  }
  .gallery__zoom svg { width: 44px; height: 44px; padding: 10px; }
}

/* Lightbox */
html.se-lightbox-open { overflow: hidden; }
.se-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.se-lightbox.is-open { opacity: 1; visibility: visible; }
.se-lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 12, 22, 0.94);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}
.se-lightbox__close,
.se-lightbox__nav {
  position: absolute; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff; cursor: pointer;
  backdrop-filter: blur(8px);
}
.se-lightbox__close {
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  width: 48px; height: 48px; border-radius: 999px;
}
.se-lightbox__nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 999px;
}
.se-lightbox__nav:disabled { opacity: 0.25; pointer-events: none; }
.se-lightbox__nav--prev { left: max(1rem, env(safe-area-inset-left)); }
.se-lightbox__nav--next { right: max(1rem, env(safe-area-inset-right)); }
.se-lightbox__stage {
  position: relative; z-index: 1;
  width: min(92vw, 1400px); height: min(72vh, 860px);
  display: flex; align-items: center; justify-content: center;
  padding: 0 4rem; margin-bottom: 3.5rem;
}
.se-lightbox__img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  user-select: none; -webkit-user-drag: none;
}
.se-lightbox.is-loading .se-lightbox__img { opacity: 0.35; }
.se-lightbox__loader {
  position: absolute; width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--se-accent);
  animation: se-spin 0.7s linear infinite;
}
.se-lightbox:not(.is-loading) .se-lightbox__loader { display: none; }
@keyframes se-spin { to { transform: rotate(360deg); } }
.se-lightbox__footer {
  position: absolute; z-index: 2;
  bottom: max(1.75rem, calc(env(safe-area-inset-bottom) + 1rem));
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  text-align: center; max-width: min(90vw, 640px); pointer-events: none;
}
.se-lightbox__counter {
  margin: 0; padding: 4px 14px; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600; color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.se-lightbox__caption { margin: 0.25rem 0 0; color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }
.se-lightbox__keys { margin: 0.25rem 0 0; font-size: 11px; color: rgba(255, 255, 255, 0.35); }
@media (max-width: 800px) {
  .se-lightbox__stage { width: 100vw; height: 72vh; padding: 0 1rem; }
  .se-lightbox__nav { width: 44px; height: 44px; }
  .se-lightbox__nav--prev { left: 0.5rem; }
  .se-lightbox__nav--next { right: 0.5rem; }
  .se-lightbox__keys { display: none; }
}

/* Areas + CTA band */
.areas { background: var(--se-sky); }
.areas__grid {
  display: grid;
  gap: 2rem;
}
.areas__intro { color: var(--se-muted); margin: 0 0 1.25rem; }
.areas__note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--se-blue);
  font-style: italic;
}
.areas__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.areas__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--se-navy);
}
.areas__map-card {
  background: #fff;
  border-radius: 16px;
  padding: 0.65rem;
  box-shadow: var(--se-shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.areas__map-frame {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 280px;
  border: 0;
  border-radius: 12px;
  background: var(--se-sky);
}
.areas__map-caption {
  margin: 0.55rem 0 0.15rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
}
.areas__map-caption a {
  color: var(--se-blue);
}
.areas__map-caption a:hover {
  color: var(--se-navy);
}
.areas__cta-card {
  background: var(--se-navy);
  color: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--se-shadow);
}
.areas__cta-icon {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--se-accent);
}
.areas__cta-title {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}
.areas__cta-text {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}
.areas__cta-card .btn { margin-bottom: 0.65rem; }
.areas__cta-card .btn:last-child { margin-bottom: 0; }

/* Final form */
.cta-final {
  background: linear-gradient(135deg, var(--se-navy-deep), var(--se-navy) 55%, var(--se-blue));
  color: #fff;
}
.cta-final__inner { max-width: 720px; }
.cta-final__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}
.estimate-form {
  background: #fff;
  color: var(--se-ink);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.estimate-form__title {
  margin: 0 0 1.1rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--se-navy);
}
.estimate-form__row {
  display: grid;
  gap: 0.9rem;
}
.estimate-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--se-navy);
}
.estimate-form__field input,
.estimate-form__field textarea {
  font: inherit;
  font-weight: 400;
  color: var(--se-ink);
  border: 1px solid var(--se-line);
  border-radius: 6px;
  padding: 0.75rem 0.85rem;
  background: var(--se-mist);
}
.estimate-form__field input:focus,
.estimate-form__field textarea:focus {
  outline: 2px solid var(--se-accent);
  outline-offset: 1px;
  background: #fff;
}
.estimate-form__error {
  background: #fde8e8; color: #8a1f1f;
  padding: 0.75rem; border-radius: 6px; margin: 0 0 1rem;
}
.estimate-form--success h3 {
  margin-top: 0; color: var(--se-navy); font-weight: 800;
}

/* Footer */
.site-footer {
  background: var(--se-navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 3.5rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.88); }
.site-footer a:hover { color: #fff; }
.site-footer__grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.site-footer__tagline {
  margin: 0.85rem 0 0;
  max-width: 18rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}
.site-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}
.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin-bottom: 0.45rem; font-size: 0.95rem; }
.site-footer__list--compact { columns: 1; }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
  font-size: 0.85rem;
}
.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.site-footer__bottom p { margin: 0; }

/* Mobile bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--se-navy-deep);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}
.mobile-bar__btn {
  min-height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; text-transform: uppercase;
  color: #fff;
}
.mobile-bar__btn--call { background: var(--se-navy); }
.mobile-bar__btn--estimate { background: var(--se-accent); }
.mobile-bar__btn:hover { color: #fff; filter: brightness(1.05); }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--se-ease), transform 0.7s var(--se-ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Desktop */
@media (min-width: 768px) {
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gallery__item:first-child .gallery__thumb { aspect-ratio: 21 / 9; }
  .areas__grid { grid-template-columns: 1.1fr 0.9fr; }
  .areas__cta { grid-column: 1 / -1; max-width: 420px; justify-self: center; width: 100%; }
  .estimate-form__row { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .site-footer__bottom-inner {
    flex-direction: row; justify-content: space-between; align-items: center;
  }
}

@media (min-width: 960px) {
  .nav__list { display: flex; }
  .site-header__actions { display: flex; }
  .nav-toggle { display: none; }
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .services__grid .service-card:nth-child(4),
  .services__grid .service-card:nth-child(5) {
    /* keep natural flow */
  }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery__item:first-child .gallery__thumb {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }
  .areas__grid {
    grid-template-columns: 1.15fr 0.9fr 0.95fr;
    align-items: stretch;
  }
  .areas__map-frame {
    min-height: 320px;
  }
  .areas__cta { grid-column: auto; max-width: none; }
  .site-footer__grid { grid-template-columns: 1.4fr 0.9fr 1fr 1fr 1.1fr; }
  .site-footer__list--compact { columns: 2; column-gap: 1rem; }
  .hero__inner { padding: 7rem 0 5.5rem; }
}

@media (min-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
