*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:    #0d1e2e;
  --steel:   #1b3a52;
  --orange:  #e8861a;
  --orange2: #f5a040;
  --off:     #f5f2ec;
  --mid:     #8a9aaa;
  --text:    #1a1a1a;
}
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--off); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 5vw;
  background: rgba(13,30,46,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
}
.nav-logo { height: 48px; width: 48px; object-fit: cover; border-radius: 4px; }
.nav-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem; letter-spacing: 0.1em;
  color: #fff; margin-left: 0.75rem; line-height: 1;
}
.nav-name span { color: var(--orange); }
.nav-left { display: flex; align-items: center; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a {
  color: var(--mid); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.13em;
  text-transform: uppercase; font-weight: 700;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange2); }
.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown > a::after { content: ' ▾'; font-size: 0.6rem; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: rgba(13,30,46,0.98); border: 1px solid rgba(232,134,26,0.2);
  border-top: 2px solid var(--orange); min-width: 220px;
  padding: 0.5rem 0; margin-top: 0.6rem;
  list-style: none; z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block; padding: 0.6rem 1.2rem;
  color: var(--mid); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu li a:hover { color: var(--orange2); background: rgba(232,134,26,0.05); }
.nav-cta {
  background: var(--orange); color: var(--navy) !important;
  padding: 0.45rem 1.2rem; border-radius: 2px;
}
.nav-cta:hover { background: var(--orange2) !important; color: var(--navy) !important; }

/* HAMBURGER */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 32px; height: 32px; cursor: pointer;
  background: none; border: none; padding: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--mid); border-radius: 2px; transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; top: 66px; left: 0; right: 0; z-index: 199;
  background: rgba(13,30,46,0.98); border-bottom: 2px solid var(--orange);
  padding: 1.5rem 5vw 2rem; flex-direction: column; gap: 1.2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--mid); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.13em;
  text-transform: uppercase; font-weight: 700; transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--orange2); }
.nav-mobile .nav-cta {
  background: var(--orange); color: var(--navy) !important;
  padding: 0.7rem 1.4rem; border-radius: 2px;
  display: inline-block; text-align: center;
}
.nav-mobile-section { font-size: 0.62rem; color: rgba(232,134,26,0.5); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.4rem; }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1825 0%, #1b3a52 40%, #2a5070 70%, #1b3a52 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(232,134,26,0.03) 60px, rgba(232,134,26,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,30,46,0.88) 0%, rgba(13,30,46,0.4) 55%, rgba(13,30,46,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 7rem 8vw 4rem; width: 100%; max-width: 860px;
}
.hero-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff; letter-spacing: 0.06em; line-height: 1;
  opacity: 0; animation: fadeUp 0.6s 0.1s forwards;
}
.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--orange); letter-spacing: 0.18em;
  margin-top: 0.3rem; margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}
.hero-rule {
  width: 48px; height: 3px; background: var(--orange);
  margin-bottom: 1.4rem; opacity: 0; animation: fadeUp 0.6s 0.28s forwards;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.6s 0.35s forwards;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.92; color: #fff; letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 0.6s 0.45s forwards;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-sub {
  margin-top: 1.5rem; font-size: 1rem; line-height: 1.8;
  color: rgba(255,255,255,0.72); font-weight: 300; max-width: 520px;
  opacity: 0; animation: fadeUp 0.6s 0.55s forwards;
}
.hero-actions {
  margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.6s 0.65s forwards;
}
.btn-primary {
  background: var(--orange); color: var(--navy);
  padding: 1rem 2.4rem; font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block; text-align: center;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.4); color: #fff;
  padding: 1rem 2.4rem; font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
  text-decoration: none; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block; text-align: center;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 2rem; right: 5vw; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.35); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 1.2s forwards;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}

/* SERVICE PAGE HERO (shorter) */
.hero-sm {
  position: relative; height: 52vh; min-height: 380px;
  overflow: hidden; display: flex; align-items: center;
}

/* STATS BAR */
.stats-bar {
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 8vw; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.stat { text-align: center; padding: 0.5rem; border-right: 1px solid rgba(255,255,255,0.07); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--orange); letter-spacing: 0.04em; line-height: 1; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); font-weight: 700; margin-top: 0.3rem; }

/* SECTIONS */
.section-tag { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 0.6rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--navy); letter-spacing: 0.03em; line-height: 1; margin-bottom: 0.8rem; }
.section-rule { width: 44px; height: 3px; background: var(--orange); margin-bottom: 3.5rem; }
.section-intro { font-size: 0.95rem; line-height: 1.8; color: #5a6670; font-weight: 300; max-width: 620px; margin-bottom: 3.5rem; }

/* SERVICES GRID */
#services { padding: 7rem 8vw; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.svc {
  border: 1.5px solid #e8e2d8; padding: 2rem 1.8rem; border-radius: 2px;
  position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  text-decoration: none; display: block; color: inherit;
}
.svc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); border-color: #c8b898; }
.svc:hover::after { transform: scaleX(1); }
.svc-thumb { width: 100%; height: 160px; border-radius: 1px; margin-bottom: 1.4rem; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.svc-thumb svg { width: 64px; height: 64px; opacity: 0.18; }
.svc-icon { width: 44px; height: 44px; border-radius: 4px; background: rgba(232,134,26,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.svc-icon svg { color: var(--orange); width: 22px; height: 22px; }
.svc h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.28rem; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 0.6rem; }
.svc p { font-size: 0.88rem; line-height: 1.7; color: #5a6670; font-weight: 300; }
.svc-thumb-1 { background: linear-gradient(135deg, #1b3a52, #2a5070); }
.svc-thumb-2 { background: linear-gradient(135deg, #2d1f0e, #5c3d1a); }
.svc-thumb-3 { background: linear-gradient(135deg, #0f2a1c, #1e5235); }
.svc-thumb-4 { background: linear-gradient(135deg, #1a1a2e, #2d2d5a); }
.svc-thumb-5 { background: linear-gradient(135deg, #2a1a0e, #6b3a10); }
.svc-thumb-6 { background: linear-gradient(135deg, #0d1e1a, #1b3a30); }

/* ABOUT BAND */
#about { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; overflow: hidden; }
.about-photo { position: relative; overflow: hidden; background: linear-gradient(135deg, #1b3a52 0%, #0d1e2e 50%, #2a5070 100%); display: flex; align-items: center; justify-content: center; min-height: 480px; }
.about-photo-badge { position: absolute; bottom: 2rem; right: 2rem; background: var(--orange); color: var(--navy); padding: 1.2rem 1.5rem; border-radius: 2px; text-align: center; }
.about-photo-badge strong { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; display: block; line-height: 1; }
.about-photo-badge span { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }
.about-copy { background: var(--navy); padding: 5rem 6vw; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.about-copy::before { content: '//'; position: absolute; right: -1.5rem; bottom: -2rem; font-family: 'Bebas Neue', sans-serif; font-size: 16rem; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none; }
.about-copy .section-tag { color: var(--orange2); }
.about-copy .section-title { color: #fff; }
.about-copy p { color: var(--mid); font-size: 0.95rem; line-height: 1.85; font-weight: 300; margin-bottom: 2rem; }
.trust-list { display: flex; flex-direction: column; gap: 0.8rem; }
.trust-item { display: flex; align-items: center; gap: 0.85rem; font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 400; }
.trust-dot { width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%; background: var(--orange); }

/* PROCESS */
#process { padding: 7rem 8vw; background: var(--off); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3.5rem; }
.process-step { position: relative; }
.process-num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: rgba(232,134,26,0.15); line-height: 1; margin-bottom: 0.75rem; }
.process-step h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; color: var(--navy); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.87rem; line-height: 1.7; color: #5a6670; font-weight: 300; }
.process-connector { position: absolute; top: 2rem; right: -1rem; width: 2rem; height: 2px; background: rgba(232,134,26,0.25); }
.process-step:last-child .process-connector { display: none; }

/* TESTIMONIALS */
#testimonials { padding: 7rem 8vw; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 3.5rem; }
.testimonial { border: 1.5px solid #e8e2d8; padding: 2rem; border-radius: 2px; position: relative; }
.testimonial::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--orange); opacity: 0.25; position: absolute; top: 0.5rem; left: 1.2rem; line-height: 1; }
.testimonial-text { font-size: 0.9rem; line-height: 1.8; color: #5a6670; font-weight: 300; font-style: italic; margin-bottom: 1.2rem; padding-top: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--orange); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.testimonial-location { font-size: 0.75rem; color: var(--mid); }
.testimonial-stars { color: var(--orange); font-size: 0.75rem; margin-top: 0.2rem; }

/* QUOTE FORM */
#quote { padding: 7rem 8vw; background: var(--off); }
.quote-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.quote-form { background: #fff; padding: 2.5rem; border-radius: 2px; border: 1.5px solid #e8e2d8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid #e0d9ce; border-radius: 2px;
  font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--text);
  background: #faf9f6; transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 1rem; background: var(--orange); color: var(--navy); border: none; border-radius: 2px; font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: var(--orange2); transform: translateY(-1px); }
.form-note { font-size: 0.75rem; color: var(--mid); margin-top: 0.75rem; text-align: center; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--navy); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.form-success p { color: #5a6670; font-size: 0.9rem; }
.quote-info { padding: 1rem 0; }
.quote-info .section-title { margin-bottom: 1.2rem; }
.quote-info p { font-size: 0.92rem; line-height: 1.85; color: #5a6670; font-weight: 300; margin-bottom: 2rem; }
.quote-contact-item { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.quote-contact-item svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.quote-contact-item a, .quote-contact-item span { font-size: 0.9rem; color: var(--text); text-decoration: none; font-weight: 400; }
.quote-contact-item a:hover { color: var(--orange); }

/* CTA BAND */
#cta {
  background: var(--navy); padding: 7rem 5vw;
  text-align: center; position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 70px, rgba(232,134,26,0.04) 70px, rgba(232,134,26,0.04) 71px);
}
.cta-inner { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.cta-slash { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; letter-spacing: 0.03em; line-height: 1; margin-bottom: 1.2rem; }
.cta-sub { color: var(--mid); font-size: 1rem; line-height: 1.75; font-weight: 300; margin-bottom: 3rem; }
.cta-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 2.5rem; }
.cta-card { background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 2rem 1.5rem; text-align: center; transition: border-color 0.25s, background 0.25s; }
.cta-card:hover { border-color: var(--orange); background: rgba(232,134,26,0.05); }
.cta-card-icon { width: 52px; height: 52px; background: rgba(232,134,26,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.cta-card-icon svg { color: var(--orange); width: 24px; height: 24px; }
.cta-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: #fff; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.cta-card a { color: var(--orange2); font-size: 1rem; font-weight: 700; text-decoration: none; transition: color 0.2s; }
.cta-card a:hover { color: #fff; }
.cta-card p { color: var(--mid); font-size: 0.78rem; margin-top: 0.25rem; }
.cta-divider { color: var(--mid); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin: 0.5rem 0; display: flex; align-items: center; gap: 1rem; }
.cta-divider::before, .cta-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.cta-big-btn { display: inline-block; background: var(--orange); color: var(--navy); padding: 1.1rem 3rem; font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; text-decoration: none; border-radius: 2px; transition: background 0.2s, transform 0.15s; margin-top: 1rem; }
.cta-big-btn:hover { background: var(--orange2); transform: translateY(-2px); }
.cta-location { margin-top: 2rem; color: rgba(255,255,255,0.3); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* SERVICE PAGE CONTENT */
.svc-page-body { padding: 6rem 8vw; background: #fff; }
.svc-page-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); letter-spacing: 0.04em; margin-bottom: 1rem; margin-top: 2.5rem; }
.svc-page-body h2:first-child { margin-top: 0; }
.svc-page-body p { font-size: 0.95rem; line-height: 1.85; color: #5a6670; font-weight: 300; margin-bottom: 1.2rem; }
.svc-page-body ul { list-style: none; margin-bottom: 1.5rem; }
.svc-page-body ul li { font-size: 0.92rem; color: #5a6670; font-weight: 300; padding: 0.4rem 0 0.4rem 1.4rem; position: relative; line-height: 1.6; }
.svc-page-body ul li::before { content: ''; position: absolute; left: 0; top: 0.75rem; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.svc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.svc-photo-block { border-radius: 2px; overflow: hidden; }
.svc-photo-block img { width: 100%; display: block; }

/* FOOTER */
footer { background: #060f17; border-top: 2px solid var(--orange); padding: 3rem 8vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.footer-brand-name span { color: var(--orange); }
.footer-brand p { color: var(--mid); font-size: 0.82rem; line-height: 1.75; font-weight: 300; max-width: 280px; }
.footer-col h5 { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: #fff; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { color: var(--mid); font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange2); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { color: var(--mid); font-size: 0.82rem; line-height: 1.6; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { color: var(--mid); font-size: 0.73rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--mid); font-size: 0.73rem; text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange2); }

/* UTILS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #about { grid-template-columns: 1fr; }
  .about-photo { min-height: 280px; }
  .cta-cards { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .process-connector { display: none; }
  .quote-wrap { grid-template-columns: 1fr; }
  .svc-two-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}
