/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #0f1c14;
  --dark-2:      #172519;
  --dark-3:      #1f3022;
  --charcoal:    #2b3e2e;
  --green:       #2c5f45;
  --green-light: #3d7a5c;
  --gold:        #b8872a;
  --gold-light:  #cc9d42;
  --gold-pale:   #f5ead8;
  --cream:       #f6f3ee;
  --sand:        #ece8df;
  --text-dark:   #1a1a1a;
  --text-mid:    #555555;
  --text-light:  #888888;
  --white:       #ffffff;
  --nav-h:       80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── UTILITY ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-dark);
}

.section-heading.light { color: var(--white); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 15px 32px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  border-radius: 3px;
}

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184,135,42,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44,95,69,0.35);
}

/* ─── NAV ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(15,28,20,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(184,135,42,0.2), 0 6px 28px rgba(0,0,0,0.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav-logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text { line-height: 1; }

.nav-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 3px;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-phone-pill {
  margin-left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}
.nav-phone-pill:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-phone-pill svg { flex-shrink: 0; }

/* Logo image */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.nav-logo-img:hover { opacity: 0.82; }

.footer-logo-img {
  height: 68px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  margin-bottom: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(184,135,42,0.25);
  z-index: 998;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.mobile-nav.open { max-height: 420px; padding: 16px 0 24px; }
.mobile-nav a {
  display: block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mob-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white) !important;
  margin: 16px 32px 0;
  padding: 14px 20px !important;
  border-radius: 3px;
  border-bottom: none !important;
  font-weight: 700;
}

/* ─── HERO (Homepage full-screen) ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,18,11,0.85) 0%,
    rgba(8,18,11,0.60) 55%,
    rgba(8,18,11,0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,135,42,0.15);
  border: 1px solid rgba(184,135,42,0.45);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.97;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
}
.hero-title span { color: var(--gold); display: block; }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-stat-row {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(10,20,13,0.65);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(184,135,42,0.2);
}

.hero-stat-inner {
  display: flex;
  justify-content: space-around;
  padding: 22px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--dark);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,13,0.9) 0%, rgba(10,20,13,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin-bottom: 16px;
}

.page-hero-title span { color: var(--gold); }

.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }

/* ─── SERVICES SECTION ─── */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.services-header .section-heading { font-size: clamp(36px, 5vw, 52px); }
.services-header p { font-size: 15px; color: var(--text-mid); margin-top: 14px; line-height: 1.7; }

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

.service-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 28px 28px 32px;
  position: relative;
}

.service-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 28px;
  width: 32px; height: 3px;
  background: var(--green);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { color: var(--gold); }

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ─── SERVICE DETAIL (services page) ─── */
.service-detail {
  padding: 90px 0;
}
.service-detail:nth-child(even) { background: var(--cream); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.service-detail-text .section-heading { font-size: clamp(32px, 4vw, 46px); margin-bottom: 18px; }
.service-detail-text p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }

.service-includes {
  list-style: none;
  margin: 20px 0 28px;
}
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--sand);
}
.service-includes li:last-child { border-bottom: none; }

.check-dot {
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── ABOUT ─── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-imgs { position: relative; }

.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

.about-img-inset {
  position: absolute;
  bottom: -28px;
  right: -24px;
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
  border: 6px solid var(--white);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

.about-text .section-heading { font-size: clamp(34px, 4vw, 50px); margin-bottom: 22px; }
.about-text p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }

.about-bullets { list-style: none; margin: 24px 0 34px; }
.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 9px 0;
  border-bottom: 1px solid var(--sand);
}
.about-bullets li:last-child { border-bottom: none; }

.about-check {
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── GALLERY ─── */
.gallery-section {
  padding: 100px 0;
  background: var(--dark);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}
.gallery-header .section-heading { font-size: clamp(36px, 5vw, 54px); color: var(--white); }
.gallery-header .section-eyebrow { color: var(--gold-light); }
.gallery-header p { font-size: 15px; color: rgba(255,255,255,0.55); margin-top: 14px; max-width: 500px; margin-left: auto; margin-right: auto; }

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

.gallery-item {
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.gallery-item.tall img { height: 532px; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,95,69,0);
  transition: background 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item-overlay svg { opacity: 0; color: var(--white); transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-item-overlay { background: rgba(44,95,69,0.3); }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  padding: 24px 16px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 4px; box-shadow: 0 32px 96px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(44,95,69,0.4); }

/* ─── PHOTO PLACEHOLDER ─── */
.photo-placeholder {
  background: #ddd9d2;
  border: 2px dashed #b8b2a9;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  position: relative;
}

.photo-placeholder.tall { height: 532px; }
.photo-placeholder.short { height: 200px; }
.photo-placeholder.medium { height: 380px; }
.photo-placeholder.full { width: 100%; height: 440px; }

.photo-placeholder-inner {
  text-align: center;
  padding: 24px;
}

.photo-placeholder-inner svg {
  color: #96918a;
  margin: 0 auto 12px;
}

.photo-placeholder-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6660;
  margin-bottom: 4px;
}

.photo-placeholder-sub {
  font-size: 12px;
  color: #96918a;
  font-weight: 500;
}

/* ─── WHY US ─── */
.why {
  padding: 100px 0;
  background: var(--cream);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-heading { font-size: clamp(34px, 4vw, 50px); margin-bottom: 18px; }
.why-text > p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 36px; }

.why-cards { display: grid; gap: 14px; }

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: 6px;
  padding: 20px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.why-card:hover { transform: translateX(6px); box-shadow: 0 10px 32px rgba(0,0,0,0.08); }

.why-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.why-card-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

.why-image-side { position: relative; }

.why-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-img-stack img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.why-img-stack img:first-child { grid-column: span 2; height: 270px; }

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 90px 0;
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.testimonials-header .section-heading { font-size: clamp(32px, 4vw, 48px); }

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

.testimonial-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg { color: var(--gold); }

.testimonial-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-location {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ─── SERVICE AREAS ─── */
.service-areas {
  padding: 80px 0;
  background: var(--dark-2);
}

.service-areas-header {
  text-align: center;
  margin-bottom: 48px;
}
.service-areas-header .section-heading { font-size: clamp(30px, 4vw, 44px); color: var(--white); }
.service-areas-header p { font-size: 15px; color: rgba(255,255,255,0.55); margin-top: 12px; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.area-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 14px 18px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.area-chip:hover {
  background: rgba(184,135,42,0.12);
  border-color: rgba(184,135,42,0.35);
}

.area-chip-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.area-chip-state { font-size: 11px; color: var(--gold-light); font-weight: 500; margin-top: 2px; }

/* ─── CALL BANNER ─── */
.call-banner {
  background: var(--green);
  padding: 22px 0;
}

.call-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.call-banner-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.call-banner-text span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.88;
  display: block;
  margin-top: 2px;
}

.call-banner-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--green);
  font-size: 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 3px;
  transition: transform 0.2s;
}
.call-banner-phone:hover { transform: scale(1.03); }

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0;
  background: var(--dark-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-heading { font-size: clamp(32px, 4vw, 48px); color: var(--white); margin-bottom: 16px; }
.contact-info .section-eyebrow { color: var(--gold-light); }
.contact-info > p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; }

.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }

.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(184,135,42,0.12);
  border: 1px solid rgba(184,135,42,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
}

.contact-detail-value { font-size: 16px; font-weight: 600; color: var(--white); }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 40px 36px;
}

.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(184,135,42,0.06);
}
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 16px; font-size: 15px; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(184,135,42,0.15);
  padding: 48px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand { }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.footer-brand-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-brand-sub { font-size: 10px; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links-list a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }

.footer-bottom-links { display: flex; gap: 24px; list-style: none; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-inset { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image-side { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-inner.reverse { direction: ltr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-phone-pill { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 180px; }
  .gallery-item.tall img { height: 180px; }
  .photo-placeholder { height: 180px; }
  .photo-placeholder.tall { height: 180px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .hero-stat-inner { gap: 18px; padding: 16px 20px; }
  .hero-stat-num { font-size: 26px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .call-banner-inner { flex-direction: column; text-align: center; }
}
