/* ============================================================
   WV CONSTRUCTION GROUP LLC — Design System
   Industrial-Clean | Black + Lime Green + Yellow
   General Contractor — Salem, Oregon
   ============================================================ */

:root {
  /* Brand Colors */
  --color-primary: #000000;
  --color-primary-dark: #000000;
  --color-primary-light: #f0f4e8;
  --color-secondary: #B4C81E;
  --color-secondary-dark: #96a819;
  --color-accent: #FAD513;
  --color-white: #ffffff;
  --color-black: #0a0a0a;

  /* Neutral Palette */
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f3;
  --color-bg-dark: #111111;
  --color-text: #1a1a1a;
  --color-text-light: #4a4a4a;
  --color-text-muted: #777777;
  --color-text-on-dark: #ffffff;
  --color-border: #e0e0e0;
  --color-border-light: #eeeeee;

  /* Status */
  --color-success: #B4C81E;
  --color-error: #dc3545;

  /* Typography */
  --font-heading: 'Oswald', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --fs-hero: clamp(2.4rem, 5vw, 3.5rem);
  --fs-h1: clamp(1.8rem, 4vw, 2.5rem);
  --fs-h2: clamp(1.4rem, 3vw, 2rem);
  --fs-h3: clamp(1.1rem, 2.5vw, 1.375rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.8125rem;
  --lh-heading: 1.2;
  --lh-body: 1.7;

  /* Spacing */
  --section-padding: clamp(3rem, 6vw, 4.5rem);
  --container-max: 1200px;
  --gap: 1.5rem;

  /* Design Tokens — industrial: sharp corners */
  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --transition: 0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
a, button, input, select, textarea, [role="button"] { touch-action: manipulation; }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-secondary);
  color: var(--color-black);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.skip-link:focus { top: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: var(--section-padding) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-dark p { color: #cccccc; }
.section-dark .color-muted { color: #aaaaaa; }
.section-dark .section-label { color: var(--color-secondary); }

/* Grid Systems */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* Split Layout (two-column: text + image) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.split-content { max-width: 560px; }
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.75rem; }
.mb-3 { margin-bottom: 1.25rem; }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 1.25rem; }
.mt-1 { margin-top: 0.375rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.375rem; }
.mt-4 { margin-top: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: var(--fs-h1); margin-bottom: 0.75rem; }
h2 { font-size: var(--fs-h2); margin-bottom: 0.625rem; }
h3 { font-size: var(--fs-h3); margin-bottom: 0.375rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.375rem; }
p { margin-bottom: 0.875rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.125rem; color: var(--color-text-light); line-height: 1.7; }
.color-primary { color: var(--color-primary); }
.color-muted { color: var(--color-text-muted); }

/* Section Label — lime green accent eyebrow */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: 0.375rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.logo img { height: 80px; width: auto; }

/* Navigation */
.nav { display: flex; align-items: center; gap: 0.125rem; }
.nav a, .nav-dropdown > button {
  padding: 0.5rem 0.875rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 48px;
  cursor: pointer;
}
.nav a:hover, .nav a.active, .nav-dropdown > button:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.nav a.active {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-secondary);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  z-index: 100;
  padding: 0.375rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: 0;
  min-height: 44px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 600;
}
.nav-dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-secondary-dark);
}
.dropdown-arrow {
  font-size: 0.65em;
  transition: transform var(--transition);
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* CTA button in nav */
.nav-cta {
  background: var(--color-secondary) !important;
  color: var(--color-black) !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
  padding: 0.625rem 1.25rem !important;
}
.nav-cta:hover {
  background: var(--color-secondary-dark) !important;
  color: var(--color-black) !important;
}

/* Phone in header */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  font-size: var(--fs-small);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header-phone:hover { color: var(--color-secondary-dark); }
.header-phone svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  transition: var(--transition);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.active span, .menu-toggle.open span { background: transparent; }
.menu-toggle.active span::before, .menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after, .menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  font-size: var(--fs-hero);
  color: var(--color-white);
  max-width: 740px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero .lead {
  color: #b0b0b0;
  max-width: 600px;
  margin-bottom: 1.5rem;
}
.hero .section-label {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.hero .btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}
.stat-label {
  font-size: var(--fs-xs);
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Hero Breadcrumbs */
.hero .breadcrumbs {
  margin-bottom: 0.75rem;
}
.hero .breadcrumbs a { color: #cccccc; }
.hero .breadcrumbs a:hover { color: var(--color-secondary); }
.hero .breadcrumbs .current { color: var(--color-secondary); }
.hero .breadcrumbs span { color: #666666; }

/* Inner Page Hero (shorter) */
.hero--inner {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.hero--inner h1 { font-size: var(--fs-h1); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.breadcrumbs a {
  color: var(--color-text-light);
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--color-secondary-dark); }
.breadcrumbs .current {
  color: var(--color-text);
  font-weight: 600;
}
.breadcrumbs span {
  margin: 0 0.35rem;
  color: var(--color-text-muted);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  min-height: 48px;
  text-align: center;
  cursor: pointer;
  line-height: 1.2;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* Primary: lime green bg, dark text */
.btn--primary {
  background: var(--color-secondary);
  color: var(--color-black);
  border-color: var(--color-secondary);
}
.btn--primary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary: black bg, white text */
.btn--secondary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--secondary:hover {
  background: #222222;
  border-color: #222222;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline: border, transparent bg */
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Outline Light: white border on dark bg */
.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

/* Button sizes */
.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--fs-small); min-height: 40px; }
.btn--lg { padding: 1.125rem 2.75rem; font-size: 1.0625rem; }
.btn--full { width: 100%; }

/* Button group */
.btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border-light);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-img {
  aspect-ratio: 16/10;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-secondary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover {
  gap: 0.6rem;
  color: var(--color-secondary);
}

/* Service Card (hover lift effect) */
.service-card {
  border-bottom: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-secondary);
}
.service-card .card-body h3 { margin-bottom: 0.375rem; }
.service-card .card-body p {
  color: var(--color-text-light);
  font-size: var(--fs-small);
  margin-bottom: 0.75rem;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-secondary);
  border: 1px solid var(--color-border-light);
  border-left: 4px solid var(--color-secondary);
}
.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
.testimonial-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 0.875rem 0;
  border-bottom: 2px solid var(--color-secondary);
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
}
.trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-secondary);
  flex-shrink: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--gap);
  flex-wrap: wrap;
  padding: 1.5rem 0;
}
.stat-box {
  text-align: center;
  padding: 1rem 1.5rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}
.stat-text {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 0.25rem;
}
.section-dark .stat-number { color: var(--color-accent); }
.section-dark .stat-text { color: #aaaaaa; }

/* ============================================================
   SECTION LABEL (defined in typography, also used standalone)
   ============================================================ */
/* .section-label is defined in the Typography section above */

/* ============================================================
   CONTENT ELEMENTS
   ============================================================ */
/* Lead paragraph — defined in Typography */

/* Checklist (list with check icons) */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  line-height: 1.5;
  color: var(--color-text);
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.1em;
}

/* ============================================================
   FORMS
   ============================================================ */
.contact-form {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-body);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
  background: var(--color-white);
  color: var(--color-text);
}
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(180, 200, 30, 0.2);
}
.form-textarea {
  min-height: 130px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.thanks-msg {
  text-align: center;
  padding: 2rem;
  font-size: 1.125rem;
  color: var(--color-secondary-dark);
  font-weight: 600;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  min-height: 48px;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-secondary-dark); }
.faq-item__icon {
  font-size: 1.25rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
  color: var(--color-secondary);
  font-weight: 700;
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__answer.open {
  max-height: 500px;
}
.faq-item__answer-inner {
  padding-bottom: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-secondary);
}
.cta-section h2 { color: var(--color-white); }
.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 1.25rem;
}
.cta-section .section-label { color: var(--color-secondary); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: #cccccc;
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__brand { }
.footer__brand p { font-size: var(--fs-small); margin-bottom: 0.5rem; color: #aaaaaa; }
.footer__brand img { height: 44px; margin-bottom: 0.75rem; }

/* Footer Social Icons */
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #999999;
  border: 1px solid #333333;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  min-height: 44px;
  min-width: 44px;
}
.footer__social a:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  background: rgba(180, 200, 30, 0.1);
}
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }

/* Footer Links */
.footer ul li { margin-bottom: 0; }
.footer a {
  color: #cccccc;
  font-size: var(--fs-small);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color var(--transition);
}
.footer a:hover { color: var(--color-secondary); }

/* Footer Contact Items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--fs-small);
  color: #cccccc;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 2rem;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: #777777;
}
.footer-bottom a { color: #777777; min-height: auto; }
.footer-bottom a:hover { color: var(--color-secondary); }
.footer__legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: var(--fs-xs);
  color: #777777;
  min-height: auto;
}
.footer__legal a:hover { color: var(--color-secondary); }

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.card-img, .split-img, .gallery-item { position: relative; overflow: hidden; }
.img-placeholder {
  aspect-ratio: 16/9;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #9ca3af;
  border-radius: var(--radius-sm);
  position: relative;
}
.img-placeholder::after {
  content: "Photo Coming Soon";
  color: #6b7280;
  font-size: var(--fs-xs);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
}
.img-real {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s;
}
.img-real.loaded { opacity: 1; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Gallery Filter Buttons */
.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.gallery-filter button {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.gallery-filter button:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary-dark);
}
.gallery-filter button.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-secondary);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gap);
  counter-reset: process-counter;
}
.process-step {
  position: relative;
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  line-height: 1;
}
.process-step__content h3 { font-size: var(--fs-h3); margin-bottom: 0.375rem; }
.process-step__content p { color: var(--color-text-light); font-size: var(--fs-small); }

/* ============================================================
   TABLES
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}
.data-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.875rem 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-xs);
}
.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.data-table tr:hover { background: var(--color-bg-alt); }

/* ============================================================
   RESPONSIVE — Tablet (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile (768px)
   ============================================================ */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img { order: -1; }
  .form-row { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    z-index: 999;
  }
  .nav.open { display: flex; }
  .nav a, .nav-dropdown > button {
    width: 100%;
    padding: 0.875rem 1rem;
    justify-content: flex-start;
    border-radius: 0;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    padding-left: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
  }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }

  .hero-stats { gap: 1.5rem; }
  .hero-stat .stat-value, .stat-value { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .stats-bar { flex-direction: column; align-items: center; }
  .stat-box { padding: 0.75rem 1rem; }

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

/* ============================================================
   RESPONSIVE — Small Mobile (480px)
   ============================================================ */
@media (max-width: 480px) {
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filter { justify-content: stretch; }
  .gallery-filter button { flex: 1; min-width: 0; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@page { margin: 0.5in; }
@media print {
  body {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    font-size: 12pt;
  }
  .header, .footer, .cta-section, .trust-bar,
  .btn, .btn-group, .menu-toggle, .nav-cta,
  .gallery-filter { display: none !important; }
  .hero { padding: 1rem 0; }
  .section { padding: 1rem 0; }
  .card { box-shadow: none; border: 1px solid #ddd; page-break-inside: avoid; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  a { color: var(--color-text); }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  nav a[href]::after { content: none; }
}
