/* ==========================================================================
   L&A LANDWORKS — WEBSITE STYLES
   Brand colors: Olive #383522 | Warm Olive #736D57 | Forest #496F45 | Rust #C84F32 | Amber #E49A20 | Lime Cream #F9FBCE
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Brand Colors */
  --green-dark:    #2C2A1B;
  --green-mid:     #383522;
  --green-light:   #3C4823;
  --rust:          #C84F32;
  --amber:         #E49A20;
  --amber-dark:    #c98b1a;
  --cream:         #FBF7EE;

  /* Neutrals */
  --dark:          #101010;
  --dark-2:        #1A1A1A;
  --dark-3:        #222222;
  --gray-dark:     #333333;
  --gray:          #666666;
  --gray-light:    #999999;
  --off-white:     #F2F4E4;
  --white:         #ffffff;

  /* Typography */
  --font-heading:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;

  /* Spacing */
  --section-py:    96px;
  --container:     1240px;
  --gap:           32px;

  /* Misc */
  --radius:        4px;
  --radius-lg:     8px;
  --shadow:        0 4px 32px rgba(0,0,0,0.15);
  --shadow-card:   0 2px 16px rgba(0,0,0,0.10);
  --transition:    0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; letter-spacing: 0.02em; }

p {
  line-height: 1.7;
  color: var(--gray-dark);
}

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
  color: inherit;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust); /* --amber */
  margin-bottom: 12px;
}

.section-label.light {
  color: rgba(255,255,255,0.6);
}

.section-sub {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* Amber (primary CTA) */
.btn-amber {
  background: var(--rust); /* --amber */
  color: var(--off-white);
  border-color: var(--rust); /* --amber */
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 154, 32, 0.35);
}

/* Green */
.btn-green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

/* Outline light (for dark backgrounds) */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* White */
.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* Outline white */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Link arrow */
.link-arrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rust); /* --amber */
  transition: gap var(--transition), color var(--transition);
}
.link-arrow:hover { color: var(--amber-dark); }

/* ==========================================================================
   6. NAVIGATION
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--white);
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }

.logo-mark {
  width: 36px;
  height: auto;
}

.word-mark {
  height: 18px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--rust); /* --amber */ }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 80px;
}

/* Dark fallback behind the video */
.hero-bg {
  position: absolute;
  inset: 0;
  background: #0d0c07;
}

/* Full-bleed video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* slight desaturation keeps text readable over any footage */
  filter: brightness(0.72) saturate(0.85);
}

/* Subtle vignette on top of the video */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 40%,
    transparent 30%,
    rgba(0, 0, 0, 0.40) 100%
  );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Dark scrim from top + stronger fade at bottom for legibility over video */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.70) 100%
  );
}

/* ── Film-grain / static overlay ──────────────────────────── */
/* Oversized so shifted positions never expose bare edges      */
/* (hero has overflow:hidden, so no bleed outside the section) */
.hero-grain {
  position: absolute;
  inset: -25%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: overlay
  ;
  /* SVG feTurbulence noise tile — grayscale fractal noise */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 280px 280px;
  /* steps(9) = 9 hard jumps per cycle — no smooth interpolation */
  /* gives the characteristic "snapping" look of real static    */
  animation: hero-grain 0.65s steps(9) infinite;
}

@keyframes hero-grain {
  0%   { transform: translate(  0%,   0%); }
  11%  { transform: translate( -5%,  -9%); }
  22%  { transform: translate(-2%,   4%); }
  33%  { transform: translate(  6%, -3%); }
  44%  { transform: translate( -4%,  6%); }
  55%  { transform: translate(-3%,   6%); }
  66%  { transform: translate( 1%,  -3%); }
  77%  { transform: translate(  1%,  4%); }
  88%  { transform: translate(-5%,   1%); }
  100% { transform: translate( 4%,   7%); }
}

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

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber); /* --amber */
  margin-bottom: 20px;
}

.hero-headline {
  margin-bottom: 28px;
  color: var(--white);
  line-height: 1.0;
}

.hero-headline .line-1 {
  display: block;
  color: var(--cream);
}

.hero-headline .line-2 {
  display: block;
  color: var(--rust); /* --amber */
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   8. FEATURED SERVICES STRIP
   ========================================================================== */
.featured-services {
  background: var(--green-dark);
  padding: var(--section-py) 0;
}

.featured-services .section-header h2 {
  color: var(--white);
}
.featured-services .section-sub {
  color: rgba(255,255,255,0.6);
}
.featured-services .section-header {
  margin-bottom: 64px;
}

.featured-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-card {
  background: var(--green-mid);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  border-top: 3px solid transparent;
}

.featured-card:hover {
  background: var(--dark-3);
  border-top-color: var(--rust); /* --amber */
}

.featured-card--accent {
  background: var(--green-dark);
  border-top-color: var(--rust); /* --amber */
}

.featured-card--accent:hover {
  background: #4a4830;
}

.featured-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 4px;
}

.featured-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-card-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  margin-bottom: -8px;
}

.featured-card h3 {
  font-size: 1.7rem;
  color: var(--white);
}

.featured-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  flex: 1;
}

.featured-card-footer {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   9. ABOUT
   ========================================================================== */
.about {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

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

.about-image-frame {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a1811 100%);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::after {
  content: 'Photo Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-stats {
  display: flex;
  gap: 0;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stat {
  flex: 1;
  background: var(--green-dark);
  padding: 20px 16px;
  text-align: center;
}

.stat:nth-child(2) { background: var(--green-mid); }
.stat:nth-child(3) { background: var(--rust); /* --amber */ }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}


.stat-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

.about-content-col .section-label {
  display: block;
}

.about-content-col h2 {
  color: var(--dark);
  margin-bottom: 24px;
}

.about-content-col p {
  margin-bottom: 16px;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.value-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(56, 53, 34, 0.2);
  color: var(--green-dark);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.value-chip svg {
  color: var(--rust); /* --amber */
  flex-shrink: 0;
}

/* ==========================================================================
   10. ALL SERVICES
   ========================================================================== */
.all-services {
  padding: var(--section-py) 0;
  background: var(--dark-2);
}

.all-services .section-header h2 { color: var(--white); }
.all-services .section-sub { color: rgba(255,255,255,0.55); }

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--transition), border-color var(--transition);
  cursor: default;
}

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(228, 154, 32, 0.3);
}

.service-icon {
  width: 64px;
  height: 64px;
  color: var(--rust); /* --amber */
  margin-bottom: 6px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.service-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================================================
   11. PROCESS
   ========================================================================== */
.process {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.process .section-header h2 { color: var(--dark); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr) ;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
  overflow: hidden;
}

/* Remove connector from grid column count */
.process-steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-step {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}

.process-step:hover::after {
  background: var(--rust); /* --amber */
}

/* Hide the connector divs */
.process-connector { display: none; }

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(56, 53, 34, 0.15);
  line-height: 1;
}

.step-content h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.process-cta {
  text-align: center;
}

/* ==========================================================================
   12. TEAM
   ========================================================================== */
.team {
  padding: var(--section-py) 0;
  background: var(--green-dark);
}

.team .section-header h2 { color: var(--white); }
.team .section-sub { color: rgba(255,255,255,0.55); }

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

.team-card {
  background: var(--green-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.team-card--featured {
  border-color: rgba(228, 154, 32, 0.3);
}

.team-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-photo--adam  { background: linear-gradient(135deg, var(--green-dark) 0%, #1a1811 100%); }
.team-photo--lucas { background: linear-gradient(135deg, var(--rust) 0%, #5c1e0e 100%); }
.team-photo--rick  { background: linear-gradient(135deg, var(--green-mid) 0%, #2e2b1a 100%); }

.team-initials {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
}

.team-info {
  padding: 32px 28px;
}

.team-info h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.team-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust); /* --amber */
  margin-bottom: 16px !important;
}

.team-bio {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* Differentiators */
.differentiators {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 64px;
}

.differentiators h3 {
  color: var(--white);
  margin-bottom: 40px;
  font-size: 2rem;
}

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

.diff-item {
  display: block;
}

.diff-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.diff-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ==========================================================================
   13. EQUIPMENT
   ========================================================================== */
.equipment {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.equipment .section-header h2 { color: var(--dark); }

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

.equip-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-card);
}

.equip-cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(56, 53, 34, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.equip-cat-title svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--rust); /* --amber */
}

.equip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.equip-list li {
  font-size: 0.88rem;
  color: var(--gray-dark);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.equip-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rust); /* --amber */
}

/* ==========================================================================
   14. SERVICE AREA
   ========================================================================== */
.service-area {
  padding: var(--section-py) 0;
  background: var(--green-dark);
}

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

.service-area-map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.service-area-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.service-area-content > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.area-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.area-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-col li {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  padding-left: 16px;
  position: relative;
}

.area-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rust); /* --amber */
}

.map-placeholder {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}

.map-placeholder svg {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   15. CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--rust); /* --amber */
  padding: 72px 0;
}

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

.cta-text h2 {
  color: var(--dark);
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(0,0,0,0.6);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta-banner .btn-white:hover {
  background: var(--cream);
}

.cta-banner .btn-outline-white {
  border-color: rgba(0,0,0,0.3);
  color: var(--dark);
}

.cta-banner .btn-outline-white:hover {
  border-color: var(--dark);
  background: rgba(0,0,0,0.08);
}

/* ==========================================================================
   16. CONTACT / ESTIMATE FORM
   ========================================================================== */
.contact {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

.contact-info .section-label {
  display: block;
}

.contact-info h2 {
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(56, 53, 34, 0.1);
  border-radius: var(--radius);
  padding: 10px;
  flex-shrink: 0;
  color: var(--green-dark);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.contact-detail a, .contact-detail span {
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.contact-detail a:hover { color: var(--green-dark); }

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.form-group label span {
  color: var(--rust);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  color: var(--dark-2);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(56, 53, 34, 0.12);
}

.form-group textarea { resize: vertical; }

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--green-dark);
  width: 16px;
  height: 16px;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-light);
  text-align: center;
  margin-top: -4px;
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark);
  padding: 72px 0 0;
}

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

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

.footer-logo .logo-mark {
  width: 32px;
}

.footer-logo .logo-text {
  font-size: 1rem;
  color: var(--white);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rust); /* --amber */
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.footer-links h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--rust); /* --amber */ }

.footer-contact h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.footer-contact a.btn {
  color: var(--off-white)
}

.footer-contact a {
  color: var(--rust); /* --amber */
  font-weight: 600;
  transition: opacity var(--transition);
}
.footer-contact a:hover { opacity: 0.8; }

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

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   18. ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   19. RESPONSIVE
   ========================================================================== */

/* Large Tablets / Small Desktops */
@media (max-width: 1100px) {
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-cards { grid-template-columns: 1fr 1fr; }
  .featured-card:last-child {
    grid-column: span 2;
    max-width: 50%;
  }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

/* Tablet */
@media (max-width: 900px) {
  :root { --section-py: 72px; }

  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    z-index: 999;
  }

  .nav-actions.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: calc(100% + 180px);
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-col { order: -1; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card--featured { grid-column: span 2; }

  .service-area-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-area-map { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 32px; }

  .diff-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --section-py: 56px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .featured-cards { grid-template-columns: 1fr; }
  .featured-card:last-child { grid-column: span 1; max-width: 100%; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card--featured { grid-column: span 1; }

  .equipment-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; text-align: center; }

  .area-cities { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WORK GALLERY
   ========================================================================== */

.our-work {
  padding: var(--section-py) 0;
  background: var(--green-dark);
  overflow: hidden;
}

.our-work .section-label {
  color: var(--rust); /* --amber */
}

.our-work .section-title, .our-work .section-header h2 {
  color: var(--cream);
}

.our-work .section-subtitle, .our-work .section-sub {
  color: rgba(251, 247, 238, 0.70);
}

/* Full-bleed grid wrapper */
.gallery-grid-wrap {
  margin-top: 48px;
  padding: 0 24px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px 220px;
  grid-template-areas:
    "feat feat sm1 sm2"
    "feat feat sm3 sm4"
    "bot1 bot2 bot3 bot4";
  gap: 12px;
}

/* Individual tile */
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--green-mid);
}

.gallery-tile--feat { grid-area: feat; }
.gallery-tile:nth-child(2) { grid-area: sm1; }
.gallery-tile:nth-child(3) { grid-area: sm2; }
.gallery-tile:nth-child(4) { grid-area: sm3; }
.gallery-tile:nth-child(5) { grid-area: sm4; }
.gallery-tile:nth-child(6) { grid-area: bot1; }
.gallery-tile:nth-child(7) { grid-area: bot2; }
.gallery-tile:nth-child(8) { grid-area: bot3; }
.gallery-tile:nth-child(9) { grid-area: bot4; }

/* Tile photo background — real photos via inline background-image style */
.gallery-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-tile:hover .gallery-tile-bg,
.gallery-tile:focus .gallery-tile-bg {
  transform: scale(1.06);
}


/* Noise overlay for texture */
.gallery-tile-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Dark scrim overlay */
.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 5, 0.80) 0%, rgba(10, 9, 5, 0.10) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  transition: opacity 0.3s ease;
}

/* Info inside overlay */
.gallery-tile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-tile-tag {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber); /* --amber */
  line-height: 1;
}

.gallery-tile-loc, .gallery-tile-info h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(251, 247, 238, 0.80);
  line-height: 1.2;
}

/* Zoom icon */
.gallery-zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(10, 9, 5, 0.55);
  border: 1px solid rgba(251, 247, 238, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.gallery-tile:hover .gallery-zoom-icon,
.gallery-tile:focus .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Focus ring */
.gallery-tile:focus {
  outline: 2px solid var(--rust); /* --amber */
  outline-offset: 2px;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  pointer-events: all;
  opacity: 1;
}

/* Backdrop */
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 4, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

/* Stage */
.lightbox-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: min(900px, 92vw);
  width: 100%;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.is-open .lightbox-stage {
  transform: translateY(0) scale(1);
}

/* Image area */
.lightbox-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap .gallery-tile-bg {
  transition: none;
}

.lightbox-placeholder-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.35);
  z-index: 1;
  pointer-events: none;
}

/* Caption */
.lightbox-caption {
  text-align: center;
  max-width: 560px;
}

.lightbox-caption-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin: 0 0 6px;
}

.lightbox-caption-detail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(251, 247, 238, 0.65);
  margin: 0;
  line-height: 1.5;
}

/* Counter */
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.45);
  z-index: 2;
  pointer-events: none;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251, 247, 238, 0.10);
  border: 1px solid rgba(251, 247, 238, 0.20);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(251, 247, 238, 0.22);
}

/* Nav buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(251, 247, 238, 0.10);
  border: 1px solid rgba(251, 247, 238, 0.20);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(251, 247, 238, 0.22);
}

.lightbox-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ── Gallery responsive ───────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 260px 200px 200px;
    grid-template-areas:
      "feat feat"
      "sm1  sm2"
      "sm3  sm4"
      "bot1 bot2"
      "bot3 bot4";
  }

  .gallery-tile:nth-child(6) { grid-area: bot1; }
  .gallery-tile:nth-child(7) { grid-area: bot2; }
  .gallery-tile:nth-child(8) { grid-area: bot3; }
  .gallery-tile:nth-child(9) { grid-area: bot4; }
}

/* Mobile */
@media (max-width: 640px) {
  .gallery-grid-wrap { padding: 0 16px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px 180px 180px;
    grid-template-areas:
      "feat feat"
      "sm1  sm2"
      "sm3  sm4"
      "bot1 bot2"
      "bot3 bot4";
    gap: 8px;
  }

  .gallery-tile--feat { aspect-ratio: unset; }

  .lightbox-nav { display: none; }

  .lightbox-stage { max-width: 96vw; }

  .lightbox-close { top: 12px; right: 12px; }

  .lightbox-caption-title { font-size: 1.15rem; }

  .diff-grid { grid-template-columns: 1fr; }

  .support-team-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .partners-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SUPPORT TEAM
   ========================================================================== */
.support-team {
  margin-top: 64px;
  padding-top: 56px;
  padding-bottom: 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.support-team-heading {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}

.support-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.support-card {
  background: var(--green-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.support-photo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-photo--brian { background: linear-gradient(135deg, #2a3d1e 0%, #496F45 100%); }
.support-photo--chad  { background: linear-gradient(135deg, #3a2510 0%, #736D57 100%); }

.support-photo .team-initials {
  font-size: 3.5rem;
}

.support-info {
  padding: 28px 28px 32px;
}

.support-info h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.testimonials .section-header h2 { color: var(--dark); }
.testimonials .section-label      { color: var(--rust); }
.testimonials .section-sub        { color: var(--gray); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--rust); /* --amber */
  opacity: 0.35;
  position: absolute;
  top: 16px;
  left: 28px;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.75;
  padding-top: 28px;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.testimonial-stars {
  color: var(--rust); /* --amber */
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   INDUSTRY PARTNERS
   ========================================================================== */
.partners {
  padding: var(--section-py) 0;
  background: var(--green-dark);
}

.partners .section-label { color: var(--rust); /* --amber */ }
.partners .section-header h2 { color: var(--cream); }
.partners .section-sub,
.partners .section-sub p {
  color: rgba(251,247,238,0.65);
  max-width: 760px;
  margin: 0 auto;
}

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

.partner-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.partner-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(228,154,32,0.3);
  transform: translateY(-3px);
}

.partner-card--cta {
  border-style: dashed;
  border-color: rgba(255,255,255,0.15);
}

.partner-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--rust); /* --amber */
}

.partner-icon svg {
  width: 100%;
  height: 100%;
}

.partner-card h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 12px;
}

.partner-card p {
  font-size: 0.9rem;
  color: rgba(251,247,238,0.6);
  line-height: 1.65;
}

/* ── Responsive: support-team + testimonials + partners ───── */
@media (max-width: 1024px) {
  .support-team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .partners-grid     { grid-template-columns: 1fr; }
  .support-team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .diff-grid         { grid-template-columns: repeat(2, 1fr); }
}
