/* ============================================
   P&D Barn Floor Grooving - Redesign
   Design System: Agricultural Precision
   ============================================ */

:root {
  --dark: #202020;
  --dark-mid: #3A3A3A;
  --gray-dark: #555555;
  --gold: #EDB83D;
  --gold-light: #F4B942;
  --cream: #F8F5EE;
  --cream-dark: #EDE8DC;
  --charcoal: #1A1A1A;
  --gray-warm: #6B6657;
  --border: #E2DCCB;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --max-width: 1200px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Utility */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--dark); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.text-amber { color: var(--gold); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-4 { margin-top: 32px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(237, 184, 61, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--dark-mid);
  transform: translateY(-2px);
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(32, 32, 32, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(32, 32, 32, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.header-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}
.header-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 4px;
  transition: all var(--transition);
}
.header-nav a:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }
.header-nav a.active { color: var(--gold-light); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
}
.header-phone a:hover { color: var(--gold-light); }
.header-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32,32,32,0.92) 0%, rgba(32,32,32,0.7) 60%, rgba(32,32,32,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(237, 184, 61, 0.4);
  border-radius: 100px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 20px;
  max-width: 700px;
}
.hero h1 .accent { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 245, 238, 0.8);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(248, 245, 238, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  background: var(--charcoal);
  padding: 20px 0;
  border-bottom: 3px solid var(--gold);
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.trust-item svg { flex-shrink: 0; }

/* ==================== SECTIONS ==================== */
.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--cream); }
.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-warm);
  max-width: 700px;
  margin-bottom: 48px;
}
.section-dark .section-subtitle { color: rgba(248, 245, 238, 0.7); }

/* ==================== SERVICE BLOCKS ==================== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse .service-block-img { order: -1; }

.service-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.service-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-block-img:hover img { transform: scale(1.05); }

.service-block-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.service-block h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.service-block p {
  color: var(--gray-warm);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.service-block ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 16px;
}
.service-block ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.service-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ==================== SERVICE CARDS (home page) ==================== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-warm);
  margin-bottom: 16px;
}
.service-card a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.service-card a:hover { color: var(--dark); }

/* ==================== WHY CHOOSE US ==================== */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.why-feature {
  text-align: center;
}
.why-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(237, 184, 61, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-feature h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.why-feature p {
  font-size: 0.95rem;
  color: var(--gray-warm);
}

/* ==================== STATS BAND ==================== */
.stats-band {
  background: var(--dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.9rem;
  color: rgba(248, 245, 238, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ==================== PROCESS ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 24px;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(237, 184, 61, 0.25);
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
}
.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--cream);
  position: relative;
}
.process-step p {
  font-size: 0.95rem;
  color: rgba(248, 245, 238, 0.7);
  position: relative;
}

/* ==================== SERVICE AREA ==================== */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.area-chip {
  padding: 8px 16px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all var(--transition);
}
.area-chip:hover {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Gallery filter */
.gallery-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter:hover { border-color: var(--gold); }
.gallery-filter.active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

/* Gallery modal */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}
.gallery-modal.open { display: flex; }
.gallery-modal img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
}
.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--cream);
  cursor: pointer;
}

/* ==================== FAQ ==================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gray-warm);
  font-size: 1rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-warm);
}

/* ==================== CTA BAND ==================== */
.cta-band {
  background: var(--gold);
  padding: 36px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 8px;
  color: var(--charcoal);
}
.cta-band p {
  font-size: 1rem;
  color: rgba(26,26,26,0.75);
  margin-bottom: 20px;
}
.cta-band .btn-dark { font-size: 1rem; padding: 12px 32px; }

/* ==================== CONTACT FORM ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-grid > * { min-width: 0; }
.contact-info-card {
  background: var(--dark);
  color: var(--cream);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
}
.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--cream);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.contact-info-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.contact-info-item .value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
}
.contact-info-item .value a { color: var(--cream); }
.contact-info-item .value a:hover { color: var(--gold-light); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact-form-card .form-sub {
  color: var(--gray-warm);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(237, 184, 61, 0.1);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.cf-turnstile { width: 100% !important; max-width: 300px !important; margin: 8px auto 20px; }
.form-status { min-height: 24px; margin: 14px 0 0; text-align: center; font-size: 0.92rem; }
.form-status.error { color: #9b1c1c; }

/* ==================== ABOUT ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.about-content p { color: var(--gray-warm); margin-bottom: 16px; font-size: 1.05rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 24px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}
.about-feature svg { flex-shrink: 0; color: var(--gold); }

/* Past customers */
.customers-section {
  background: var(--cream-dark);
  padding: 64px 0;
}
.customers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.customer-tag {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--charcoal);
  text-align: center;
  font-weight: 500;
  transition: all var(--transition);
}
.customer-tag:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ==================== PAGE HEADER (interior pages) ==================== */
.page-header {
  background: var(--dark);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(248, 245, 238, 0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-about p {
  color: rgba(248, 245, 238, 0.6);
  font-size: 0.95rem;
  margin: 16px 0;
  max-width: 350px;
}
.footer-logo img {
  height: 56px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(248, 245, 238, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(248, 245, 238, 0.7);
  font-size: 0.95rem;
}
.footer-contact-item a { color: rgba(248, 245, 238, 0.7); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(248, 245, 238, 0.45);
  font-size: 0.85rem;
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .nav-toggle { display: block; }
  .header-nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .header-nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .header-phone { display: none; }

  .service-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-block.reverse .service-block-img { order: 0; }
  .service-block ul { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .hero { min-height: 540px; }
  .hero-stats { gap: 24px; }
  .hero-stat .num { font-size: 2rem; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .hero-content { padding: 56px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-bar-inner { flex-direction: column; gap: 12px; }
}

@media (max-width: 360px) {
  .contact-form-card { padding: 28px 10px; }
  .cf-turnstile { max-width: 100%; overflow: hidden; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}