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

:root {
  --primary: #454a26;        /* dark olive — from badge logo */
  --primary-light: #5c6330;
  --primary-dark: #30351a;
  --accent: #ede5ce;         /* cream — from badge logo */
  --accent-dark: #dcd0ae;
  --white: #ffffff;
  --paper: #fbf9f2;          /* warm off-white */
  --light: #f4efe1;          /* light cream section bg */
  --gray: #5d5f55;  /* AA contrast on cream backgrounds */
  --text: #363828;
  --shadow: 0 4px 20px rgba(48, 53, 26, 0.08);
  --transition: all 0.3s ease;
  --nav-h: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

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

/* Skip link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* Contact form helpers */
.form-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.5rem;
}
.form-note a { color: var(--primary); text-decoration: underline; }
.form-status {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
  min-height: 1.2em;
}
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--paper);
  box-shadow: 0 2px 10px rgba(48, 53, 26, 0.08);
  border-bottom: 1px solid rgba(69, 74, 38, 0.12);
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-script {
  font-family: 'Yellowtail', cursive;
  font-size: 2.1rem;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
  padding-left: 0.15rem;
}

.nav-links {
  display: flex;
  flex: 1;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-left: 3rem;
  list-style: none;
  padding: 0;
}

.nav-links .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

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

.nav-links .nav-phone::after { display: none; }

.nav-links a {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--primary);
  position: relative;
  padding: 0.5rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn-nav {
  background: var(--primary);
  color: var(--white);
  padding: 0.7rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  margin-left: 1rem;
}

.nav-links .btn-nav:hover {
  background: var(--primary-light);
}

.nav-links .btn-nav::after { display: none; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

@media (max-width: 1100px) {
  .nav-logo img {
    height: 56px;
  }

  .logo-script {
    font-size: 1.8rem;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    box-shadow: var(--shadow);
    transform: translateY(calc(-100% - var(--nav-h) - 40px));
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.75rem 0;
    width: 100%;
  }

  .nav-links .btn-nav {
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: center;
    display: block;
  }

  .nav-links li:nth-last-child(2) {
    margin-left: 0;
  }

  .nav-links .nav-phone {
    justify-content: center;
    width: 100%;
    padding: 0.75rem 0;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 39, 18, 0.62) 0%, rgba(35, 39, 18, 0.48) 60%, rgba(26, 29, 13, 0.72) 100%);
}

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

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p.hero-subhead {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin: 0 auto 2rem;
  max-width: 720px;
  line-height: 1.55;
  color: #fff;
  opacity: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.hero p.hero-subhead strong {
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  max-width: 760px;
}

.hero-badges li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}

.hero-stats {
  list-style: none;
  margin: 3.5rem auto 0;
  padding: 2rem 1rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-stat-num {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-stat-label {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 320px;
    padding-top: 1.5rem;
    margin-top: 2.5rem;
  }
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-header .underline {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto 1rem;
}

.section-header p {
  color: var(--primary-light);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.6;
}

.section-header .section-eyebrow {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 0;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(48, 53, 26, 0.14);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f4f6;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
  letter-spacing: -0.005em;
}

.service-card p {
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--light);
}

/* ===== HOMEPAGE FEATURED PROJECTS ===== */
.home-projects {
  padding: 5rem 2rem;
}

.home-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-projects-more {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .home-project-grid { grid-template-columns: 1fr; }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-item h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Conversion CTA override */
.cta-convert {
  padding: 120px 2rem;
}

@media (max-width: 768px) {
  .cta-convert { padding: 80px 1.5rem; }
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-convert h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}

.cta-convert .cta-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0 auto 2.5rem;
  max-width: 640px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 560px) {
  .cta-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .cta-actions .btn { width: 100%; }
}

.btn-cta-primary {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

.btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: calc(1rem - 2px) calc(2rem - 2px);
  font-weight: 600;
  border-radius: 6px;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-cta-tertiary {
  background: transparent;
  color: #ffffff;
  padding: 1rem 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  border-radius: 0;
}

.btn-cta-tertiary:hover {
  opacity: 1;
  color: #ffffff;
  transform: translateX(2px);
}

.cta-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
}

@media (max-width: 560px) {
  .cta-contact { flex-direction: column; gap: 1.25rem; }
}

.cta-contact li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
}

.cta-contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 600;
}

.cta-contact a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cta-contact a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem 4rem;
  margin-top: 120px;
}

.page-hero { margin-top: var(--nav-h); }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  opacity: 0.8;
  font-size: 1.1rem;
}

.about-story {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .about-story { padding: 80px 0; }
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: center;
}

@media (max-width: 960px) {
  .about-content { grid-template-columns: 1fr; gap: 3rem; }
}

.about-text {
  max-width: 650px;
}

.about-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: 2.25rem;
}

.about-block {
  margin-bottom: 1.75rem;
}

.about-block:last-of-type {
  margin-bottom: 2.25rem;
}

.about-text p {
  color: var(--gray);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0;
}

.about-cta {
  margin-top: 0.5rem;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}

/* ===== FOUNDER ===== */
.founder {
  padding: 120px 2rem;
  background: #ffffff;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

@media (max-width: 768px) {
  .founder { padding: 80px 1.5rem; }
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.1fr);
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; justify-items: center; }
}

.founder-photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  background: var(--light);
  display: block;
  width: 100%;
  max-width: 380px;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.founder-content {
  max-width: 560px;
}

.founder-eyebrow {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}

.founder-content h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin: 0 0 0.4rem;
}

.founder-dates {
  font-size: 1rem;
  color: #6b7280;
  letter-spacing: 0.04em;
  margin: 0 0 2rem;
}

.founder-body p {
  color: var(--gray);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.founder-body p:last-child {
  margin-bottom: 0;
}

.founder-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--primary);
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  color: var(--primary);
  background: var(--light);
  border-radius: 0 6px 6px 0;
}

.founder-verse {
  margin: 2.5rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.founder-verse p {
  font-size: 1.0625rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--primary);
  margin: 0 0 0.75rem;
  font-weight: 400;
}

.founder-verse cite {
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
}

.core-values {
  padding: 120px 2rem;
}

@media (max-width: 768px) {
  .core-values { padding: 80px 1.5rem; }
}

.core-values .section-header {
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.values-grid-2 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1200px;
}

@media (max-width: 960px) {
  .values-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .values-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-card {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.value-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(17, 24, 39, 0.05);
  border-radius: 8px;
  margin-bottom: 1.1rem;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-card:hover {
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.value-card h3 {
  color: var(--primary);
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.value-card p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 42ch;
  margin: 0;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 4rem 2rem;
}

/* Project card grid — LeChase-style thumbnails */
.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

/* First project is featured: full-width card with a wide cinematic crop */
.project-card-grid .project-card:first-child {
  grid-column: 1 / -1;
}

.project-card-grid .project-card:first-child .project-card-image {
  aspect-ratio: 21 / 9;
}

.project-card-grid .project-card:first-child .project-card-info h3 {
  font-size: 1.25rem;
}

@media (max-width: 1000px) {
  .project-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .project-card-grid { grid-template-columns: 1fr; }
  .project-card-grid .project-card:first-child .project-card-image { aspect-ratio: 4 / 3; }
}

.project-card {
  display: block;
  color: inherit;
  background: var(--primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.project-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--primary);
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.05);
}

.project-card-info {
  padding: 0.9rem 1.1rem;
  background: var(--primary);
  color: var(--white);
}

.project-card-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--white);
}

.project-card-info p {
  font-size: 0.8rem;
  opacity: 0.75;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* Back link on project detail pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.back-link:hover {
  opacity: 0.65;
}

/* Project block — one block per job */
.project-block {
  margin-bottom: 1rem;
}

/* Project name bar */
.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.project-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.project-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.project-meta {
  font-size: 0.88rem;
  color: var(--gray);
  letter-spacing: 0.3px;
}

.project-tag {
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* Short project description above the photo grid */
.project-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 900px;
  margin: 0 0 1.5rem 0;
}

/* Photo grid inside each project */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* Divider between projects */
.project-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 3rem 0;
}

/* Legacy grid (kept for any other use) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.gallery-overlay p { font-size: 0.85rem; opacity: 0.85; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 4rem 2rem 1.75rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand img {
  height: 42px;
  margin-bottom: 1.1rem;
  filter: brightness(0) invert(1);
}

.footer-brand .footer-script {
  display: inline-block;
  font-family: 'Yellowtail', cursive;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer-brand p {
  opacity: 0.65;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer h4 {
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: #fff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact a,
.footer-contact span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.footer-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

@media (max-width: 560px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.8;
  transition: var(--transition);
}

.lightbox-close:hover { opacity: 1; }

/* ===== SERVICES DETAIL ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #eee;
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-text { order: 1; }

@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-img { order: 0; }
  .service-detail.reverse .service-detail-text { order: 0; }
}

.service-detail-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.service-detail-text h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-detail-text p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--gray);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== CERTIFICATIONS BAR ===== */
.cert-bar {
  background: var(--light);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.cert-item { padding: 1.5rem 1rem; }

.cert-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.cert-item h4 {
  color: var(--primary);
  font-size: 0.95rem;
}

/* ===== PROCESS TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 1;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author h4 {
  color: var(--primary);
  font-size: 0.95rem;
}

.testimonial-author p {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== SERVICE AREAS MAP ===== */
.map-container {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.coverage-visual {
  background: var(--primary);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
}

.coverage-header {
  margin-bottom: 2rem;
}

.coverage-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.coverage-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.coverage-header p {
  opacity: 0.7;
  font-size: 1rem;
}

.state-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.state-badge {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.state-badge:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--primary);
}

.area-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.area-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gray); }

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   SERVICES PAGE
   =================================================================== */

/* --- Unified hero --- */
.services-hero {
  position: relative;
  background: var(--primary);
  color: var(--white);
  margin-top: var(--nav-h);
  padding: 7.5rem 1.5rem 7rem;
  overflow: hidden;
  isolation: isolate;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.services-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 39, 18, 0.74) 0%, rgba(35, 39, 18, 0.62) 60%, rgba(26, 29, 13, 0.78) 100%);
  z-index: -1;
}

.services-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.services-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.services-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin: 0 auto 2rem;
}

.services-hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.services-hero-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  color: var(--white);
  padding: 0.35rem 0.25rem;
}

.services-hero-phone-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.services-hero-phone-num {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.services-hero-phone:hover .services-hero-phone-num {
  text-decoration: underline;
}

/* --- Service grid --- */
.service-grid-section { padding: 5rem 1.5rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  align-items: stretch;
}

@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(17, 24, 39, 0.05);
  border-radius: 8px;
  margin-bottom: 1.1rem;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  color: var(--primary);
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* --- Credentials strip --- */
.credentials-strip {
  background: var(--light);
  padding: 2.75rem 1.5rem;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 800px) {
  .credentials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.credentials-item {
  padding: 0.5rem;
  border-left: 1px solid rgba(17, 24, 39, 0.08);
}

.credentials-item:first-child { border-left: none; }

@media (max-width: 800px) {
  .credentials-item { border-left: none; }
}

.credentials-stat {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.credentials-label {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Occupied properties / Gulf Coast shared 3-col grids --- */
.occupied-section,
.gulf-coast-section {
  padding: 5rem 1.5rem;
}

.gulf-coast-section { background: var(--light); }

.occupied-grid,
.gulf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
}

@media (max-width: 860px) {
  .occupied-grid,
  .gulf-grid { grid-template-columns: 1fr; }
}

.occupied-card,
.gulf-item {
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 10px;
}

.gulf-coast-section .gulf-item { background: var(--white); }

.occupied-icon,
.gulf-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(17, 24, 39, 0.05);
  border-radius: 8px;
  margin-bottom: 1.1rem;
}

.occupied-icon svg,
.gulf-icon svg { width: 24px; height: 24px; }

.occupied-card h3,
.gulf-item h3 {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.6rem;
}

.occupied-card p,
.gulf-item p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* --- Horizontal process timeline --- */
.process-section { padding: 5rem 1.5rem; }

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  position: relative;
  counter-reset: step;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(17, 24, 39, 0.12);
  z-index: 0;
}

@media (max-width: 860px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.12);
}

.process-step h4 {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* --- Final CTA --- */
.services-final-cta {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 1.5rem;
}

.services-final-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-final-cta-text h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 0.4rem;
}

.services-final-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.services-final-cta-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.services-final-cta-phone {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--white);
}

.services-final-cta-phone span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.services-final-cta-phone strong {
  font-size: 1.35rem;
  font-weight: 700;
}

.services-final-cta-phone:hover strong { text-decoration: underline; }

/* Dark-background primary button tweak for services hero + final CTA */
.services-hero .btn-primary,
.services-final-cta .btn-primary,
.cta-banner .btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.services-hero .btn-primary:hover,
.services-final-cta .btn-primary:hover,
.cta-banner .btn-primary:hover {
  background: var(--accent-dark);
  color: var(--primary);
}
