/* ============================================================
   RYBAR FENCING AND CONSTRUCTION — Main Stylesheet
   Dark Edition: Black / Charcoal / White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Dark Palette */
  --black:          #000000;
  --near-black:     #080808;
  --dark-1:         #0e0e0e;   /* primary page bg */
  --dark-2:         #141414;   /* alt section bg */
  --dark-3:         #1a1a1a;   /* card bg, panels */
  --dark-4:         #222222;   /* elevated cards */
  --dark-5:         #2a2a2a;   /* borders, dividers */
  --grey-1:         #3a3a3a;   /* subtle borders */
  --grey-2:         #555555;   /* disabled / muted */
  --grey-3:         #888888;   /* body text secondary */
  --grey-4:         #aaaaaa;   /* body text */
  --grey-5:         #cccccc;   /* body text light */
  --silver:         #d8d8d8;
  --off-white:      #eeeeee;
  --white:          #ffffff;

  /* Accent — crisp white as the single action color on dark bg */
  --accent:         #ffffff;
  --accent-dim:     rgba(255,255,255,0.12);
  --accent-border:  rgba(255,255,255,0.18);

  /* Rust / Copper accent */
  --rust:           #c05228;
  --rust-dark:      #9e4220;
  --rust-light:     #d46a3a;
  --rust-glow:      rgba(192, 82, 40, 0.14);

  /* Legacy aliases */
  --charcoal:       var(--dark-1);
  --charcoal-dark:  var(--black);
  --charcoal-mid:   var(--dark-3);
  --steel:          var(--dark-5);
  --steel-light:    var(--grey-3);
  --steel-lighter:  var(--grey-1);
  --tan:            var(--grey-5);
  --tan-dark:       var(--grey-3);
  --limestone:      var(--dark-2);
  --beige:          var(--dark-1);
  --green:          var(--dark-3);
  --green-light:    var(--dark-4);
  --green-dark:     var(--dark-1);

  --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg:  12px;

  --shadow-sm:  0 2px 8px  rgba(0,0,0,0.4);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:  0 10px 48px rgba(0,0,0,0.6);

  --transition: 0.3s ease;
  --container:  1200px;
  --nav-h:      72px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  color: var(--grey-4);
  background: var(--dark-1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; transition: var(--transition); }
ul    { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h5 { font-size: 1.15rem; }
p  { color: var(--grey-4); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-white  { color: var(--white) !important; }
.text-tan    { color: var(--silver) !important; }
.text-rust   { color: var(--rust) !important; }
.text-green  { color: var(--grey-5) !important; }
.text-center { text-align: center; }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 0.6rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-light     { background-color: var(--dark-2); }
.section-limestone { background-color: var(--dark-3); }
.section-dark      { background-color: var(--dark-1); }
.section-green     { background-color: var(--dark-2); }

.section-header { max-width: 780px; margin-bottom: 3rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { font-size: 1.05rem; margin-top: 0.75rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

/* Primary — rust/copper button */
.btn-rust {
  background: var(--rust);
  color: var(--white);
  border-color: var(--rust);
}
.btn-rust:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--rust-glow);
}

/* Secondary — dark grey button, white text */
.btn-green {
  background: var(--dark-4);
  color: var(--white);
  border-color: var(--grey-1);
}
.btn-green:hover {
  background: var(--dark-5);
  border-color: var(--grey-2);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline white */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outline dark — on light sections (now also dark) same as outline-white */
.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-dark:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outline rust — same as outline-white in dark theme */
.btn-outline-rust {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-rust:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.btn-group.centered { justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--dark-5);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.nav-logo-mark {
  height: 34px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-mark { opacity: 0.75; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo .logo-sub {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-top: 2px;
}
.nav-logo:hover .logo-main { color: var(--grey-5); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--grey-4);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.nav-link:hover  { color: var(--white); }
.nav-link.active { color: var(--white); }

.nav-item-dropdown { position: relative; }
.nav-item-dropdown > .nav-link > i {
  font-size: 0.6rem;
  transition: transform var(--transition);
}
.nav-item-dropdown:hover > .nav-link > i { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  min-width: 240px;
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-4);
  transition: var(--transition);
}
.dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  padding-left: 1.6rem;
}

.nav-cta {
  background: var(--rust);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--rust-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--rust-glow);
}

.nav-phone {
  color: var(--grey-5) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem !important;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone:hover { color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: 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); }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* All heroes: very dark with subtle gradient variation */
.hero-home {
  background:
    linear-gradient(to bottom right, rgba(0,0,0,0.85) 0%, rgba(14,14,14,0.7) 50%, rgba(0,0,0,0.92) 100%),
    linear-gradient(135deg, #080808 0%, #1a1a1a 50%, #0e0e0e 100%);
  /* Real image: background: linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.7)), url('../images/hero-ranch.jpg') center/cover no-repeat; */
}
.hero-commercial  { background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(10,10,10,0.8) 100%), linear-gradient(135deg, #080808 0%, #141414 100%); }
.hero-residential { background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(14,14,14,0.78) 100%), linear-gradient(135deg, #0a0a0a 0%, #181818 100%); }
.hero-ranch       { background: radial-gradient(ellipse at 15% 60%, rgba(192,82,40,0.06) 0%, transparent 50%), linear-gradient(to bottom, rgba(0,0,0,0.86) 0%, rgba(10,10,10,0.75) 100%), linear-gradient(135deg, #0a0a0a 0%, #161616 100%); }
.hero-game        { background: radial-gradient(ellipse at 15% 60%, rgba(192,82,40,0.06) 0%, transparent 50%), linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(8,8,8,0.82) 100%), linear-gradient(135deg, #060606 0%, #111111 100%); }
.hero-construction{ background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(12,12,12,0.78) 100%), linear-gradient(135deg, #0a0a0a 0%, #171717 100%); }
.hero-austin      { background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(14,14,14,0.78) 100%), linear-gradient(135deg, #080808 0%, #151515 100%); }
.hero-dfw         { background: radial-gradient(ellipse at 80% 40%, rgba(40,80,192,0.07) 0%, transparent 55%), linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(10,14,20,0.80) 100%), linear-gradient(135deg, #080c14 0%, #12161e 100%); }
.hero-stephenville{ background: linear-gradient(to bottom, rgba(0,0,0,0.86) 0%, rgba(10,10,10,0.76) 100%), linear-gradient(135deg, #0a0a0a 0%, #161616 100%); }
.hero-ranch-game  { background: radial-gradient(ellipse at 15% 60%, rgba(192,82,40,0.07) 0%, transparent 50%), linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(10,10,10,0.78) 100%), linear-gradient(135deg, #0a0a0a 0%, #181818 100%); }
.hero-about       { background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%); min-height: 55vh; }
.hero-interior    { background: linear-gradient(135deg, #080808 0%, #141414 100%); min-height: 50vh; }
.hero-services    { background: linear-gradient(135deg, #080808 0%, #181818 100%); min-height: 55vh; }

/* Logo X watermark on all heroes */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  width: 52%;
  max-width: 660px;
  aspect-ratio: 420 / 260;
  background: url('../images/rybar-logo.jpeg') no-repeat center / contain;
  opacity: 0.028;
  pointer-events: none;
  z-index: 1;
  filter: invert(1);
  mix-blend-mode: screen;
}

/* Subtle grain overlay on home hero */
.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.04'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
}
.hero-content .eyebrow { color: var(--grey-3); margin-bottom: 0.8rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; max-width: 900px; }
.hero-content p  { color: rgba(255,255,255,0.68); font-size: 1.15rem; max-width: 680px; margin-bottom: 0; }

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey-5);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}
.hero-phone i { font-size: 1rem; }
.hero-phone:hover { color: var(--white); }

.hero-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-5);
  margin-bottom: 1.2rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark-2);
  padding: 1rem 0;
  border-top: 1px solid var(--dark-5);
  border-bottom: 1px solid var(--dark-5);
}
.trust-bar-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey-4);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  position: relative;
}
.trust-bar-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--dark-5);
}
.trust-bar-item:last-child::after { display: none; }
.trust-bar-item i { color: var(--rust); font-size: 0.85rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--grey-2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  background: var(--dark-4);
}

.service-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--rust); border-color: var(--rust); }
.service-card-icon i { font-size: 1.4rem; color: var(--grey-3); transition: var(--transition); }
.service-card:hover .service-card-icon i { color: var(--white); }

.service-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.95rem; color: var(--grey-4); flex: 1; margin-bottom: 1.5rem; }
.service-card .btn { align-self: flex-start; margin-top: auto; }

/* 4-column service grid (home page) */
.services-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.services-grid-4 .service-card { padding: 2rem 1.75rem; }
.services-grid-4 .service-card h3 { font-size: 1.4rem; }

/* 5-column on home (legacy) */
.services-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.services-grid-5 .service-card { padding: 1.75rem 1.5rem; }
.services-grid-5 .service-card h3 { font-size: 1.3rem; }

/* ============================================================
   PROJECT TYPE CHIPS
   ============================================================ */
.project-types { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }
.project-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: 2rem;
  font-size: 0.88rem;
  color: var(--grey-4);
  font-weight: 500;
  transition: var(--transition);
}
.project-chip:hover { background: var(--rust); color: var(--white); border-color: var(--rust); }
.project-chip i { font-size: 0.72rem; color: var(--rust); }

/* ============================================================
   WHY CHOOSE / FEATURE SECTION
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-content h2 { margin-bottom: 1.25rem; }

.why-bullets { margin: 1.5rem 0 2rem; }
.why-bullet { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.1rem; }
.why-bullet-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: var(--rust);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.why-bullet-icon i { font-size: 0.65rem; color: var(--white); }
.why-bullet p { margin: 0; font-size: 1rem; color: var(--grey-4); }

.why-visual {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-5);
  background: var(--dark-3);
  display: flex;
  align-items: flex-end;
}
.why-visual-label {
  padding: 2rem;
  z-index: 2;
  position: relative;
  border-top: 1px solid var(--dark-5);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  width: 100%;
}
.why-visual-label span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-3);
  display: block;
  margin-bottom: 0.3rem;
}
.why-visual-label strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--dark-5);
  position: relative;
}
.process-step-num {
  width: 52px; height: 52px;
  background: var(--rust);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
}
.process-step h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.75rem; }
.process-step p  { font-size: 0.92rem; color: var(--grey-4); margin: 0; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.area-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.area-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.area-card:hover::after { transform: scaleX(1); }
.area-card:hover { background: var(--dark-4); }
.area-card .area-icon { font-size: 2rem; color: var(--grey-3); margin-bottom: 1rem; }
.area-card h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 0.75rem; }
.area-card p  { color: var(--grey-4); margin-bottom: 1.5rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.gallery-filter-btn {
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--dark-5);
  border-radius: 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey-3);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active { background: var(--rust); border-color: var(--rust); color: var(--white); }

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.gallery-item {
  flex: 0 0 calc((100% - 3.75rem) / 4); /* 4 per row, 3 gaps of 1.25rem */
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--dark-5);
  transition: var(--transition);
}
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rust);
  z-index: 2;
  opacity: 0.45;
  transition: opacity 0.25s;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover { transform: scale(1.015); box-shadow: 0 16px 48px rgba(0,0,0,0.65); border-color: var(--grey-2); }

.gallery-placeholder {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
}
.gallery-ph-icon {
  font-size: 1.75rem;
  color: var(--grey-1);
  opacity: 0.55;
  transition: color 0.25s, opacity 0.25s;
}
.gallery-item:hover .gallery-ph-icon { color: var(--rust); opacity: 0.75; }
.gallery-label {
  background: rgba(0,0,0,0.6);
  color: var(--grey-4);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  text-align: center;
}

/* Per-category placeholder backgrounds */
.gallery-item[data-cat="residential"]   .gallery-placeholder { background: radial-gradient(ellipse at 50% 30%, rgba(192,82,40,0.07) 0%, transparent 65%), linear-gradient(135deg, #110e08 0%, #1c1810 100%); }
.gallery-item[data-cat="commercial"]    .gallery-placeholder { background: radial-gradient(ellipse at 50% 30%, rgba(60,80,180,0.06) 0%, transparent 65%), linear-gradient(135deg, #08080e 0%, #12121e 100%); }
.gallery-item[data-cat="ranch"]         .gallery-placeholder { background: radial-gradient(ellipse at 50% 30%, rgba(60,140,40,0.06) 0%, transparent 65%), linear-gradient(135deg, #0a0e08 0%, #141c0e 100%); }
.gallery-item[data-cat="game"]          .gallery-placeholder { background: radial-gradient(ellipse at 50% 30%, rgba(192,82,40,0.05) 0%, transparent 65%), linear-gradient(135deg, #060606 0%, #101010 100%); }
.gallery-item[data-cat="gates"]         .gallery-placeholder { background: radial-gradient(ellipse at 50% 30%, rgba(150,130,80,0.06) 0%, transparent 65%), linear-gradient(135deg, #0e0e0a 0%, #1a1a14 100%); }
.gallery-item[data-cat="construction"]  .gallery-placeholder { background: radial-gradient(ellipse at 50% 30%, rgba(192,120,40,0.07) 0%, transparent 65%), linear-gradient(135deg, #100a06 0%, #1c1208 100%); }

.gallery-note {
  text-align: center;
  padding: 1.75rem;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  border: 1px dashed var(--dark-5);
  color: var(--grey-3);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}
.gallery-note a { color: var(--grey-5); text-decoration: underline; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--dark-5); }
.faq-item:first-child { border-top: 1px solid var(--dark-5); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  gap: 1.5rem;
  text-align: left;
}
.faq-question-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.faq-icon {
  width: 30px; height: 30px;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon i { font-size: 0.8rem; color: var(--grey-3); transition: transform var(--transition); }
.faq-item.active .faq-icon { background: var(--rust); border-color: var(--rust); }
.faq-item.active .faq-icon i { color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 1.5rem; }
.faq-answer-inner p { font-size: 1rem; color: var(--grey-4); }
.faq-answer-inner a { color: var(--grey-5); text-decoration: underline; }
.faq-item.active .faq-answer { max-height: 400px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: start; }
.contact-form-wrap {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--dark-5);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--dark-1);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  color: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--grey-2);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 8l5 5 5-5z' fill='%23888888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
}
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-note { font-size: 0.82rem; color: var(--grey-2); margin-top: 1rem; text-align: center; }

/* Formspree error states */
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px var(--rust-glow);
}
.fs-field-error {
  display: block;
  font-size: 0.8rem;
  color: var(--rust-light);
  margin-top: 0.35rem;
  min-height: 0;
}
.fs-form-error {
  display: none;
  background: rgba(192, 82, 40, 0.12);
  border: 1px solid var(--rust);
  border-radius: var(--radius-md);
  color: var(--rust-light);
  font-size: 0.9rem;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.25rem;
}
.fs-form-error:not(:empty) { display: block; }

.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success i { font-size: 3rem; color: var(--grey-5); margin-bottom: 1rem; }
.form-success h3 { color: var(--white); margin-bottom: 0.75rem; }

.contact-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.contact-info-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h4 { color: var(--grey-5); font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-info-icon {
  width: 38px; height: 38px;
  background: var(--dark-4);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { color: var(--grey-3); }
.contact-info-text span { display: block; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-2); margin-bottom: 0.2rem; }
.contact-info-text a,
.contact-info-text p { color: var(--grey-5); font-size: 0.97rem; margin: 0; }
.contact-info-text a:hover { color: var(--white); }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-5);
  border-bottom: 1px solid var(--dark-5);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, var(--rust-glow) 0%, transparent 60%),
    radial-gradient(ellipse at center, rgba(255,255,255,0.015) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: var(--grey-4); font-size: 1.1rem; max-width: 620px; margin: 0 auto 2rem; }

.cta-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-5);
  border-bottom: 1px solid var(--dark-5);
  padding: 1.75rem 0;
}
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-strip-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: var(--white); }
.cta-strip-text span { color: var(--grey-4); font-size: 1rem; font-weight: 400; display: block; font-family: var(--font-body); margin-top: 0.15rem; }

/* ============================================================
   VALUES / ABOUT CARDS
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.value-card {
  padding: 2rem;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--dark-5);
  border-left: 3px solid var(--grey-2);
  transition: var(--transition);
}
.value-card:hover { border-left-color: var(--rust); background: var(--dark-4); }
.value-card i    { font-size: 1.6rem; color: var(--rust); margin-bottom: 1rem; }
.value-card h4   { font-size: 1.25rem; color: var(--white); margin-bottom: 0.75rem; }
.value-card p    { font-size: 0.93rem; color: var(--grey-4); margin: 0; }

/* ============================================================
   LOCATION SERVICE CARDS
   ============================================================ */
.location-services { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.location-service-card {
  padding: 2rem;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-md);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}
.location-service-card:hover { border-color: var(--grey-2); background: var(--dark-4); }
.location-service-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--dark-4);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-service-icon i { font-size: 1.3rem; color: var(--grey-3); }
.location-service-card h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.45rem; }
.location-service-card p  { font-size: 0.9rem; color: var(--grey-4); margin: 0; }
.location-service-card a  { display: inline-block; margin-top: 0.7rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--grey-3); }
.location-service-card a:hover { color: var(--white); }
.location-service-card a i { font-size: 0.65rem; margin-left: 0.2rem; }

/* ============================================================
   RELATED SERVICES
   ============================================================ */
.related-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.25rem; }
.related-card {
  padding: 1.75rem 1.5rem;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}
.related-card:hover { border-color: var(--grey-2); transform: translateY(-3px); background: var(--dark-4); }
.related-card i   { font-size: 1.6rem; color: var(--grey-3); margin-bottom: 0.75rem; display: block; transition: var(--transition); }
.related-card:hover i { color: var(--white); }
.related-card h5  { font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.related-card a   { font-size: 0.8rem; color: var(--grey-3); font-weight: 600; font-family: var(--font-heading); letter-spacing: 0.05em; text-transform: uppercase; }
.related-card a:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--dark-5);
  padding: 4rem 0 0;
  color: var(--grey-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-3);
}

/* Footer logo */
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-logo-mark {
  height: 30px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.85;
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-brand .footer-logo-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}
.footer-brand .footer-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
  display: block;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 1rem 0 1.5rem; color: var(--grey-3); }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.9rem; color: var(--grey-3); transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-contact-item i { color: var(--grey-2); font-size: 0.85rem; width: 16px; }
.footer-contact-item a { color: var(--grey-3); }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item span { color: var(--grey-3); line-height: 1.5; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--grey-1);
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--black);
  border-top: 1px solid var(--dark-5);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
}
.mobile-sticky-cta-inner { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--dark-3);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-right: 1px solid var(--dark-5);
}
.mobile-sticky-call:hover { background: var(--dark-4); color: var(--white); }
.mobile-sticky-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--rust);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.mobile-sticky-quote:hover { background: var(--rust-dark); color: var(--white); }

/* ============================================================
   UTILITY / MISC
   ============================================================ */
.divider {
  width: 48px; height: 3px;
  background: var(--rust);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider.centered { margin-left: auto; margin-right: auto; }

.highlight-box {
  background: var(--dark-3);
  border-left: 3px solid var(--rust);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}
.highlight-box p { margin: 0; font-size: 1.02rem; color: var(--grey-4); }
.highlight-box a { color: var(--grey-5); text-decoration: underline; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-num  { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; display: block; }
.stat-label{ font-size: 0.88rem; color: var(--grey-3); margin-top: 0.4rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--grey-2);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--grey-2); }
.breadcrumb a:hover { color: var(--grey-4); }
.breadcrumb i { font-size: 0.65rem; }
.breadcrumb .current { color: var(--grey-4); }

.blog-topics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.blog-topic {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.blog-topic:hover { border-color: var(--grey-2); background: var(--dark-4); }
.blog-topic i    { color: var(--grey-2); font-size: 0.85rem; margin-top: 0.2rem; flex-shrink: 0; }
.blog-topic span { font-size: 0.93rem; color: var(--grey-4); font-weight: 500; }

/* ============================================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand    { grid-column: span 2; }
  .related-services{ grid-template-columns: repeat(2, 1fr); }
  .stat-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { width: 100%; padding: 0.85rem 0.5rem; font-size: 1rem; border-bottom: 1px solid var(--dark-3); }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    padding: 0.25rem 0 0.5rem 1rem;
    pointer-events: all;
    display: none;
    border: none; min-width: 0; border-radius: 0;
  }
  .nav-item-dropdown.open .dropdown-menu { display: block; }
  .nav-item-dropdown > .nav-link > i { margin-left: auto; }
  .nav-cta { width: 100%; text-align: center; margin: 1rem 0 0; padding: 1rem !important; font-size: 1rem !important; }
  .nav-phone { display: none; }
  .mobile-sticky-cta { display: block; }

  .hero { min-height: 72vh; padding-bottom: 3rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 320px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .areas-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .location-services { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .blog-topics { grid-template-columns: 1fr; }
  body { padding-bottom: 70px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4rem 0; }
  .services-grid    { grid-template-columns: 1fr; }
  .services-grid-4  { grid-template-columns: 1fr; }
  .services-grid-5  { grid-template-columns: 1fr 1fr; }
  .grid-3           { grid-template-columns: 1fr; }
  .grid-4           { grid-template-columns: 1fr 1fr; }
  .gallery-item     { flex-basis: calc((100% - 1.25rem) / 2); } /* 2 per row at tablet */
  .process-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-brand     { grid-column: 1; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .trust-bar-items  { flex-direction: column; align-items: center; }
  .trust-bar-item::after { display: none; }
  .related-services { grid-template-columns: 1fr 1fr; }
  .stat-grid        { grid-template-columns: 1fr 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .nav-logo .logo-sub { display: none; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.85rem; }
}

/* ============================================================
   MAPS GRID (contact page)
   ============================================================ */
.maps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
}
.map-label {
  padding: 1.25rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.map-label i {
  color: var(--rust);
  font-size: 1.1rem;
}
.map-label h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.map-label a {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--rust);
  text-decoration: none;
  white-space: nowrap;
}
.map-label a:hover { text-decoration: underline; }
.map-embed {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
  filter: grayscale(20%);
}
@media (max-width: 900px) {
  .maps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .maps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up           { animation: fadeUp 0.6s ease both; }
.fade-up-delay-1   { animation-delay: 0.1s; }
.fade-up-delay-2   { animation-delay: 0.2s; }
.fade-up-delay-3   { animation-delay: 0.3s; }
