/* ====================================================
   STANDING SEAM METAL CLIPS — style.css
   Human-crafted aesthetic, Vermont local service
   ==================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --steel: #38bdf8;
  --steel-dk: #0284c7;
  --steel-lt: #bae6fd;
  --dark: #0b1120;
  --dark2: #111827;
  --dark3: #1e2a3b;
  --gray: #6b7280;
  --gray-lt: #9ca3af;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --slate: #0f1e30;
  --border: #e2e8f0;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .22);

  --font: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Typography ---------- */
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel-dk);
  margin-bottom: .75rem;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--steel) 0%, var(--steel-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
  letter-spacing: .01em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--steel-dk);
  color: #fff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, .3);
}

.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(2, 132, 199, .4);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, .85);
  border: 1.5px solid rgba(255, 255, 255, .35);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--steel-dk);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.btn-white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}

.navbar.scrolled {
  background: rgba(11, 17, 32, .96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 24px rgba(0, 0, 0, .35);
  padding: .65rem 0;
}

.nav-inner {
  width: min(1160px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-right: auto;
  white-space: nowrap;
}

.logo-svg {
  color: var(--steel);
  flex-shrink: 0;
}

.logo-accent {
  color: var(--steel);
}

.nav-links {
  display: flex;
  gap: .1rem;
}

.nav-link {
  color: rgba(255, 255, 255, .75);
  font-size: .875rem;
  font-weight: 500;
  padding: .4rem .85rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: var(--steel-dk);
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  padding: .5rem 1.2rem;
  border-radius: 6px;
  transition: background .2s, box-shadow .2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #0369a1;
  box-shadow: 0 4px 16px rgba(2, 132, 199, .35);
}

.cta-pulse {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.7);
    opacity: .5;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.0);
  }

  to {
    transform: scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 14, 28, .95) 0%,
      rgba(8, 14, 28, .65) 45%,
      rgba(8, 14, 28, .3) 100%);
}

/* trust bar at top of hero */
.hero-trust-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(2, 132, 199, .12);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(56, 189, 248, .18);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: .55rem 1rem;
  margin-top: 64px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .88);
  font-size: .78rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--steel);
  flex-shrink: 0;
}

.trust-sep {
  color: rgba(255, 255, 255, .25);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(1160px, 92vw);
  margin-inline: auto;
  padding: 0 0 7rem;
}

.hero-location {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: rgba(255, 255, 255, .75);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.hero-scroll-hint span {
  writing-mode: vertical-rl;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(56, 189, 248, .6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .6;
  }

  50% {
    opacity: 1;
  }
}

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.intro-stat {
  display: flex;
  align-items: baseline;
  gap: .2rem;
  flex-wrap: wrap;
  flex-direction: column;
  min-width: 100px;
}

.istat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--steel-dk);
  line-height: 1;
}

.istat-plus {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--steel);
  margin-left: .1rem;
}

.istat-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .2rem;
}

.intro-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.intro-text {
  flex: 1;
  min-width: 240px;
  padding-left: 1rem;
  border-left: 3px solid var(--steel);
}

.intro-text p {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.7;
  font-style: italic;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 6rem 0;
  background: var(--off-white);
}

.services-split {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-block--flip {
  direction: rtl;
}

.service-block--flip>* {
  direction: ltr;
}

.service-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-lg);
}

.service-photo img {
  transition: transform .7s ease;
}

.service-block:hover .service-photo img {
  transform: scale(1.04);
}

.service-photo-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(11, 17, 32, .82);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .85rem;
  border-radius: 4px;
  border-left: 3px solid var(--steel);
}

.service-content {
  padding: .5rem 0;
}

.service-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.service-content p {
  color: var(--gray);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-checklist {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.service-checklist li {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark2);
  padding-left: 1.5rem;
  position: relative;
}

.service-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--steel-dk);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--steel-dk);
  font-weight: 700;
  font-size: .9rem;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: .1rem;
  transition: gap .2s, color .2s;
  margin-top: .5rem;
}

.service-link:hover {
  gap: .6rem;
  color: var(--steel);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 6rem 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--steel-dk);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(2, 132, 199, .35);
}

.ab-years {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .3rem;
}

.ab-text {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
  line-height: 1.4;
}

.about-content {
  padding: .5rem 0;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--gray);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.about-creds {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark2);
}

.cred-item svg {
  flex-shrink: 0;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c4a6e 0%, var(--steel-dk) 100%);
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=30&fit=crop') center/cover;
  opacity: .06;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-lt);
  margin-bottom: .4rem;
}

.cta-banner-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 540px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: 6rem 0;
  background: var(--off-white);
}

.gallery .container {
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
}

.gallery-item img {
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.g-tall {
  grid-row: span 2;
}

.g-wide {
  grid-column: span 2;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 1.5rem .9rem .65rem;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  padding: 6rem 0;
  background: var(--dark2);
}

.reviews .section-eyebrow {
  color: var(--steel-lt);
}

.reviews .section-title {
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: background .3s, border-color .3s, transform .3s;
}

.review-card:hover {
  background: rgba(56, 189, 248, .06);
  border-color: rgba(56, 189, 248, .2);
  transform: translateY(-3px);
}

.review-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  font-size: .94rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  border: none;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--steel-dk);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
}

.reviewer span {
  display: block;
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 6rem 0;
  background: var(--dark);
}

.process .section-eyebrow {
  color: var(--steel-lt);
}

.process .section-title {
  color: #fff;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.process-step {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--steel-dk);
  line-height: 1;
  margin-bottom: .75rem;
  opacity: .7;
}

.step-content h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.step-content p {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  line-height: 1.7;
}

.process-connector {
  flex: 0 0 32px;
  height: 1px;
  background: rgba(56, 189, 248, .35);
  margin-top: 1.5rem;
  align-self: flex-start;
  position: relative;
}

.process-connector::after {
  content: '›';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--steel);
  font-size: .9rem;
  line-height: 1;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 6rem 0;
  background: var(--slate);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-sub {
  color: rgba(255, 255, 255, .55);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon-wrap {
  width: 36px;
  height: 36px;
  background: rgba(56, 189, 248, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.ci-label {
  display: block;
  color: rgba(255, 255, 255, .4);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.ci-value {
  color: #fff;
  font-size: .97rem;
  font-weight: 600;
  line-height: 1.5;
}

a.ci-value:hover {
  color: var(--steel);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: .5rem;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .4rem;
}

.form-subtitle {
  color: var(--gray);
  font-size: .875rem;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
  letter-spacing: .01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--dark);
  background: #f8fafc;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--steel-dk);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, .15);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  text-align: center;
  color: var(--gray-lt);
  font-size: .78rem;
  margin-top: .8rem;
}

.form-success {
  display: none;
  text-align: center;
  background: #f0fdf4;
  color: #166534;
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid #bbf7d0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-logo {
  margin-bottom: .85rem;
}

.footer-desc {
  color: rgba(255, 255, 255, .45);
  font-size: .875rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: .5rem;
}

.footer-license {
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
  font-weight: 500;
  letter-spacing: .04em;
}

.footer-links h5,
.footer-contact h5 {
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .4);
  font-size: .875rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--steel);
}

.footer-contact p,
.footer-contact a {
  color: rgba(255, 255, 255, .4);
  font-size: .875rem;
  line-height: 1.7;
}

.footer-contact a:hover {
  color: var(--steel);
}

.footer-hours {
  margin-top: .5rem;
  font-size: .8rem !important;
  color: rgba(255, 255, 255, .25) !important;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, .22);
  font-size: .78rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(11, 17, 32, .98);
    backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open .nav-link {
    font-size: 1.4rem;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-block--flip {
    direction: ltr;
  }

  .service-photo {
    height: 320px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-main {
    height: 320px;
  }

  .about-img-accent {
    display: none;
  }

  .about-badge {
    top: 1rem;
    left: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .g-tall {
    grid-row: span 1;
  }

  .g-wide {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .process-connector {
    display: none;
  }

  .process-steps {
    gap: 2rem;
  }

  .trust-sep {
    display: none;
  }

  .hero-trust-bar {
    flex-direction: column;
    gap: .5rem;
    padding: .75rem 1rem;
  }

  .intro-strip-inner {
    flex-direction: column;
  }

  .intro-divider {
    width: 60px;
    height: 1px;
  }

  .intro-text {
    border-left: none;
    border-top: 3px solid var(--steel);
    padding-left: 0;
    padding-top: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    letter-spacing: -.01em;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .g-tall,
  .g-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-creds {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-scroll-hint {
    display: none;
  }
}