/* ============================================
   MC STRIPING — Design System & Global Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors — derive from logo; deep asphalt + safety yellow accent */
  --color-primary: #1a1f2e;        /* Deep navy/asphalt */
  --color-primary-light: #2a3142;  /* Lighter navy */
  --color-accent: #e8b931;         /* Safety yellow/gold */
  --color-accent-hover: #d4a520;   /* Darker gold on hover */
  --color-accent-light: #fdf3d7;  /* Light gold tint */
  --color-white: #ffffff;
  --color-off-white: #f8f9fa;
  --color-light-gray: #e9ecef;
  --color-mid-gray: #6c757d;
  --color-dark-gray: #343a40;
  --color-text: #212529;
  --color-text-muted: #6c757d;
  --color-success: #28a745;
  --color-border: #dee2e6;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 160px;
  --border-radius: 6px;
  --border-radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-accent-hover);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p + p { margin-top: var(--space-md); }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--gray {
  background: var(--color-off-white);
}

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

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: var(--space-2xl);
}

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.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);
}

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

.btn--dark:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 138px;
  width: auto;
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

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

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-primary);
}

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

.header-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 6px 0;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: var(--space-2xl);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

.mobile-nav .btn {
  margin-top: var(--space-lg);
  text-align: center;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,185,49,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(42,49,66,0.5) 0%, transparent 50%);
}

/* Subtle asphalt texture pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

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

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  line-height: 1.7;
}

.hero .btn-group {
  margin-bottom: var(--space-xl);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.hero-phone a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Geometric accent on hero */
.hero-graphic {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.06;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
}

.hero-graphic::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}

/* --- Before/After Section --- */
.before-after-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-dark-gray);
}

.ba-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  z-index: 2;
}

.ba-label--before {
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.9);
}

.ba-label--after {
  background: var(--color-accent);
  color: var(--color-primary);
}

.ba-caption {
  grid-column: 1 / -1;
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-white);
}

.ba-caption-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.ba-caption-location {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.ba-caption-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

/* --- Reviews Carousel --- */
.reviews-track {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-md) 0 var(--space-xl) 0;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: box-shadow var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.review-star {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.review-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.reviews-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.reviews-nav button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.reviews-nav button svg {
  width: 18px;
  height: 18px;
}

/* --- Services List --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
}

.service-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-accent-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent-hover);
}

.service-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
}

/* --- Brochure Section --- */
.brochure-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.brochure-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: all var(--transition-base);
  text-decoration: none;
}

.brochure-link:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
  color: var(--color-primary);
}

.brochure-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-5xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(232,185,49,0.08);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.cta-section .btn-group {
  justify-content: center;
  align-items: center;
  position: relative;
}

/* --- Projects Page --- */
.project-block {
  margin-bottom: var(--space-3xl);
}

.project-block:last-child {
  margin-bottom: 0;
}

.project-meta {
  margin-bottom: var(--space-lg);
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.project-location {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.project-caption {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: var(--color-text);
}

.project-services {
  margin-top: var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.project-service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-accent-light);
  color: var(--color-accent-hover);
  border-radius: var(--border-radius);
  letter-spacing: 0.02em;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent-hover);
}

.contact-info-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.contact-info-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-primary);
}

.contact-info-value a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--color-accent-hover);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232,185,49,0.15);
}

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

.form-char-count {
  text-align: right;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.form-response-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  font-style: italic;
}

/* --- Landing Page (/request) --- */
.landing-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.landing-hero {
  background: var(--color-primary);
  padding: var(--space-4xl) 0;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.landing-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.landing-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
}

.landing-form {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
}

.landing-form h3 {
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand h3 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.footer-brand-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--color-accent);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* --- Page Header Banner --- */
.page-header {
  background: var(--color-primary);
  padding: var(--space-4xl) 0 var(--space-2xl);
  margin-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(232,185,49,0.06);
  border-radius: 50%;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  position: relative;
}


@media (max-width: 600px) {
  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-2xl) 0; }
  .hero { min-height: 60vh; }
  .services-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn-group .btn { width: 100%; max-width: 320px; }
  .brochure-grid { flex-direction: column; align-items: stretch; }
  .brochure-link { justify-content: center; }
}

/* --- Quote Popup Overlay --- */
.quote-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.5);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.quote-popup-overlay.open { display: flex; }
.quote-popup {
  background: var(--color-white); border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem; width: 100%; max-width: 400px;
  box-shadow: var(--shadow-xl); text-align: center;
  position: relative;
}
.quote-popup-close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: none; border: none; cursor: pointer;
  color: var(--color-text-muted); padding: 4px;
}
.quote-popup-close:hover { color: var(--color-text); }
.quote-popup-close svg { width: 20px; height: 20px; }
.quote-popup h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--color-primary); margin-bottom: 0.5rem;
}
.quote-popup p {
  color: var(--color-text-muted); font-size: 0.9rem;
  margin-bottom: 1.5rem; line-height: 1.5;
}
.quote-popup .btn { width: 100%; justify-content: center; margin-bottom: 0.6rem; }
.quote-popup .btn:last-child { margin-bottom: 0; }
.quote-popup-or {
  font-size: 0.75rem; color: var(--color-text-muted);
  margin: 0.4rem 0; text-transform: uppercase; letter-spacing: 0.1em;
}

/* --- Header CTA Button (desktop) --- */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-cta .btn { padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.header-phone-link {
  font-size: 0.8rem; font-weight: 600; color: var(--color-primary);
  text-decoration: none; display: flex; align-items: center; gap: 0.3rem;
}
.header-phone-link svg { width: 14px; height: 14px; }
.header-phone-link:hover { color: var(--color-accent-hover); }

/* --- Mid-page CTA Strip --- */
.cta-strip {
  background: var(--color-primary); padding: 1.5rem 0; text-align: center;
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.cta-strip p {
  color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 500; margin: 0;
}
.cta-strip .btn { flex-shrink: 0; }

/* --- Call Bar (shows on load, hides on scroll) --- */
.phone-bar {
  display: flex;
  justify-content: center;
  background: var(--color-primary);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.phone-bar.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.phone-bar a {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  text-decoration: none;
  padding: var(--space-sm) var(--space-xl);
  width: 100%;
}
.phone-bar svg {
  width: 16px;
  height: 16px;
}

body { padding-bottom: 44px; }
body.bar-hidden { padding-bottom: 0; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: block; }

  .site-header {
    height: 70px;
    transition: transform 0.3s ease;
  }
  .site-header.header-hidden {
    transform: translateY(-100%);
  }
  .header-inner {
    padding: 0 var(--space-md);
  }
  .header-logo {
    overflow: hidden;
    max-width: 55px;
    height: 55px;
  }
  .header-logo img {
    height: 55px;
    width: auto;
    object-fit: cover;
    object-position: left center;
  }
  .hero { min-height: 70vh; margin-top: 70px; }
  .page-header { margin-top: 70px; }
  .hero-graphic { display: none; }
  
  .mobile-nav {
    top: 70px;
  }

  .before-after-card { grid-template-columns: 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .landing-hero-grid { grid-template-columns: 1fr; }
  
  .review-card { flex: 0 0 290px; }
}

/* --- Resources in page banner --- */
.page-header-resources {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.25rem;
}
.page-header-resources a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.page-header-resources a:hover {
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
}
.page-header-resources a svg { width: 14px; height: 14px; }

/* --- Services Page Layout --- */
.services-layout {
  display: flex;
  gap: var(--space-2xl);
  align-items: flex-start;
}
.services-main {
  flex: 1;
  min-width: 0;
}
.resources-sidebar {
  position: fixed;
  right: 1.5rem;
  top: calc(var(--header-height) + 1.5rem);
  width: 25%;
  max-width: 280px;
  z-index: 50;
}
.resources-sidebar-inner {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .services-layout {
    flex-direction: column;
  }
  .resources-sidebar {
    display: none;
  }
}

/* --- Before/After Ticker (single-track horizontal carousel) ---
   The .ba-track contains all pairs side-by-side in a horizontal flex row.
   JS animates transform: translateX(-N * 100%) to slide the track left.
   When it reaches the end, JS clones the first pair to the end so the
   animation loops seamlessly back to the start. This is the same model
   every well-known carousel library uses. */
.ba-slideshow {
  position: relative;
  aspect-ratio: 8 / 3;        /* two side-by-side 4:3 panels */
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--color-dark-gray);
}
.ba-track {
  display: flex;
  width: 100%;
  height: 100%;
  /* Each .ba-slide inside is `flex: 0 0 100%`, so the track ends up
     N × 100% wide with N slides. translateX(-100%) = advance by 1. */
  transition: transform 0.9s cubic-bezier(0.65, 0.05, 0.35, 1);
  will-change: transform;
}
.ba-track--no-anim {
  transition: none;
}
.ba-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: 100%;
}
.ba-slide-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--color-dark-gray);
}
.ba-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-slide-label {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
}
.ba-slide-label--before {
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.95);
}
.ba-slide-label--after {
  background: var(--color-accent);
  color: var(--color-primary);
}

@media (max-width: 600px) {
  .ba-slideshow { aspect-ratio: 4 / 5; }
  .ba-slide { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .ba-track { transition: none; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Intersection observer driven */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: if JS fails, show content after 2s */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
