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

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

:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #fef2f2;
  --charcoal: #1f2937;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --black: #000000;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 896px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 700;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 4px 14px rgba(220,38,38,0.3); }
.btn-red:hover { background: var(--red-dark); }
.btn-white { background: var(--white); color: var(--red); box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.btn-white:hover { background: var(--gray-50); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-gray { background: transparent; color: var(--gray-700); border: 2px solid var(--gray-200); }
.btn-outline-gray:hover { border-color: var(--red); color: var(--red); }
.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; border-radius: 0.5rem; }
.btn:active { transform: scale(0.97); }

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 120px;
}
.header-logo img { height: 90px; width: auto; object-fit: contain; display: block; }
.header-nav { display: flex; align-items: flex-end; gap: 1.5rem; }
.header-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-700);
  transition: color 0.2s;
}
.header-nav a:hover, .header-nav a.active { color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-700);
}
.hamburger svg { width: 24px; height: 24px; }

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: 120px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
#mobile-menu a:hover, #mobile-menu a.active { color: var(--red); }
#mobile-menu .mobile-wa {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
}
.mobile-phone { margin-top: 1rem; text-align: center; font-size: 0.875rem; color: var(--gray-500); }
.mobile-phone a:hover { color: var(--red); }

/* ── FOOTER ── */
#site-footer { background: var(--black); color: var(--white); }
.footer-cta-bar {
  background: var(--red);
  padding: 1rem 1.5rem;
}
.footer-cta-bar .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-cta-bar p { color: var(--white); font-weight: 600; }
.footer-cta-bar .btn-black {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-cta-bar .btn-black:hover { background: var(--gray-900); }
.footer-main { max-width: 1280px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
.footer-brand-logo { height: 64px; width: auto; object-fit: contain; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { color: var(--gray-400); font-size: 0.875rem; line-height: 1.75; max-width: 28rem; margin-bottom: 1.5rem; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 2px solid var(--red);
  color: #ef4444;
  font-weight: 600;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.footer-wa-btn:hover { background: var(--red); color: var(--white); }
.footer-col h3 { color: #ef4444; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-col ul li a:hover { color: #ef4444; }
.footer-col ul li a svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--gray-800);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.footer-bottom a:hover { color: #ef4444; }

/* ── PAGE WRAPPER ── */
.page-content { padding-top: 120px; }

/* ── PAGE HEADER ── */
.page-hero {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
  padding: 3rem 1rem 4rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.page-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--gray-900), rgba(17,24,39,0.95));
}
.page-hero-red-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--red);
}
.page-hero-content {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1rem;
}
.page-hero-content h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 3.75rem); }
.page-hero-content p { color: var(--gray-400); font-size: 1.125rem; max-width: 42rem; margin: 1.25rem auto 0; line-height: 1.7; }

/* ── PAGE HERO TITLEBAR VARIANT (INNER PAGES) ── */
.page-hero.page-hero-titlebar {
  height: 300px;
  min-height: 300px;
  max-height: 300px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero.page-hero-titlebar .page-hero-bg img {
  opacity: 1;
  object-fit: cover;
  object-position: center center;
}

.page-hero.page-hero-titlebar .page-hero-bg-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.page-hero.page-hero-titlebar .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.page-hero.page-hero-titlebar .page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
}

.page-hero.page-hero-titlebar .page-hero-content p {
  color: rgba(255,255,255,0.92);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ── GRID HELPERS ── */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.grid-lg-2 { grid-template-columns: 1fr 1fr; gap: 3.5rem; }

/* ── FLEX ── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.section-sm { padding: 3.5rem 0; }
.bg-white { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-gray-900 { background: var(--gray-900); }
.bg-red { background: var(--red); }
.bg-black { background: var(--black); }

/* ── TYPOGRAPHY ── */
.section-heading { font-size: clamp(2rem, 5vw, 3rem); color: var(--gray-900); }
.section-heading.light { color: var(--white); }
.section-subtext { color: var(--gray-500); margin-top: 1rem; max-width: 38rem; line-height: 1.7; }
.section-subtext.light { color: var(--gray-400); }
.body-text { color: var(--gray-600); line-height: 1.8; }
.body-text p + p { margin-top: 1.25rem; }

/* ── CARD ── */
.card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  transition: all 0.3s;
}
.card-dark:hover { background: rgba(255,255,255,0.08); }

/* ── ICON BOX ── */
.icon-box {
  display: inline-flex;
  padding: 0.875rem;
  background: rgba(220,38,38,0.1);
  border-radius: 0.75rem;
  flex-shrink: 0;
}
.icon-box svg { width: 24px; height: 24px; color: var(--red); }
.icon-box-lg svg { width: 28px; height: 28px; }

/* ── BADGE ── */
.badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-red { background: var(--red); color: var(--white); }
.badge-green { background: #16a34a; color: var(--white); }

/* ── RED ACCENT LINE ── */
.red-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--red); }
.red-line { height: 2px; background: var(--red); display: inline-block; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--gray-200); }

/* ── SPACING ── */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

/* ── FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.375rem; }
.form-group label span { color: var(--red); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  outline: none;
  transition: all 0.2s;
  background: var(--white);
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
textarea.form-control { resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 0.75rem; padding: 1rem; color: #dc2626; font-size: 0.875rem; margin-bottom: 1rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success .success-icon { display: inline-flex; padding: 1rem; background: #f0fdf4; border-radius: 9999px; margin-bottom: 1.25rem; }
.form-success h3 { font-size: 1.5rem; color: var(--gray-900); margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-600); font-size: 0.875rem; }
.form-success a { color: var(--red); font-weight: 600; }
.btn-reset { background: none; border: none; cursor: pointer; font-size: 0.875rem; color: var(--gray-400); text-decoration: underline; margin-top: 1rem; font-family: inherit; }
.btn-reset:hover { color: var(--gray-600); }

/* ── TABLE ── */
.comparison-table { border-radius: 1rem; overflow: hidden; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.table-header { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 1rem 1.5rem; background: rgba(255,255,255,0.1); }
.table-header span { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); }
.table-header .col-mpt { text-align: center; color: #ef4444; }
.table-header .col-generic { text-align: center; color: var(--gray-500); }
.table-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.table-row:nth-child(even) { background: rgba(255,255,255,0.03); }
.table-row .col-feature { color: var(--gray-300); font-size: 0.875rem; }
.table-row .col-check { display: flex; justify-content: center; }
.check-yes { color: #22c55e; }
.check-no { color: var(--gray-600); font-weight: 700; }

/* ── GALLERY ── */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.filter-btn { padding: 0.5rem 1.25rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.filter-btn.active { background: var(--red); color: var(--white); }
.filter-btn:not(.active) { background: var(--gray-100); color: var(--gray-600); }
.filter-btn:not(.active):hover { background: var(--gray-200); }
.gallery-grid { columns: 3; gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; position: relative; border-radius: 0.75rem; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
}
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 100%; max-height: 90vh; border-radius: 0.75rem; object-fit: contain; }
#lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 2.5rem; cursor: pointer; line-height: 1; }
#lightbox-close:hover { color: var(--white); }

/* ── CTA SECTIONS ── */
.cta-section { padding: 5rem 0; text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 1.25rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── MAP ── */
.map-container { border-radius: 1rem; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.map-container iframe { display: block; }

/* ── BUSINESS HOURS ── */
.hours-card { background: var(--gray-900); border-radius: 1rem; padding: 1.75rem; }
.hours-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.hours-card h3 svg { color: #ef4444; }
.hours-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; padding-bottom: 0.75rem; margin-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-row:last-child { border: none; margin: 0; padding: 0; }
.hours-row .day { color: var(--gray-400); }
.hours-row .time { color: var(--white); font-weight: 600; }
.hours-row .time.closed { color: #f87171; }
.hours-note { margin-top: 1.25rem; font-size: 0.75rem; color: var(--gray-500); }

/* ── CONTACT CARDS ── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
  border: 1px solid transparent;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover { background: #fef2f2; border-color: #fecaca; }
.contact-card .icon-box { background: rgba(220,38,38,0.1); }
.contact-card:hover .icon-box { background: rgba(220,38,38,0.15); }
.contact-card-title { font-weight: 700; color: var(--gray-900); margin-bottom: 0.25rem; font-size: 0.9375rem; }
.contact-card-value { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; }
.contact-card-cta { color: var(--red); font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--gray-900); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(3,7,18,0.95), rgba(17,24,39,0.85), rgba(31,41,55,0.5)); }
.hero-content { position: relative; max-width: 1280px; margin: 0 auto; padding: 5rem 1.5rem; width: 100%; }
.hero-text { max-width: 42rem; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.hero-eyebrow .line { height: 2px; width: 2rem; background: var(--red); }
.hero-eyebrow span { color: #ef4444; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.hero h1 { font-size: clamp(2.75rem, 7vw, 4.5rem); color: var(--white); line-height: 1; margin-bottom: 1.5rem; }
.hero h1 span { color: #ef4444; }
.hero p { color: var(--gray-300); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; max-width: 36rem; }
.hero-address { display: flex; align-items: center; gap: 0.375rem; color: var(--gray-400); font-size: 0.875rem; }
.hero-address svg { color: #ef4444; flex-shrink: 0; }
.hero-strip { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--white); }
.hero-strip svg { flex-shrink: 0; }
.hero-strip-bar { background: var(--red); padding: 1.25rem 1.5rem; }
.hero-strip-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.hero-strip-divider { width: 1px; height: 1.25rem; background: rgba(255,255,255,0.3); }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.25rem; color: var(--gray-500); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; }
.scroll-indicator .scroll-line { width: 1px; height: 2rem; background: linear-gradient(to bottom, transparent, var(--gray-500)); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ── STAT CARDS ── */
.stat-card-red { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--red); color: var(--white); padding: 1.5rem; border-radius: 1rem; box-shadow: 0 8px 24px rgba(220,38,38,0.4); }
.stat-card-red p:first-child { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; }
.stat-card-red p:last-child { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; line-height: 1.4; }
.stat-card-white { position: absolute; top: -1rem; right: -1rem; background: var(--white); border: 1px solid var(--gray-100); padding: 1.25rem; border-radius: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.stat-card-white p:first-child { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gray-900); }
.stat-card-white p:last-child { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.125rem; }

/* ── PROCESS STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.step { text-align: center; }
.step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  border-radius: 9999px;
  background: var(--gray-50);
  border: 4px solid var(--red);
  margin: 0 auto 1.5rem;
}
.step-circle span { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--red); }
.step h3 { font-size: 1.5rem; color: var(--gray-900); margin-bottom: 0.75rem; }
.step p { color: var(--gray-500); line-height: 1.7; }

/* ── MISSION BLOCK ── */
.mission-section { position: relative; background: var(--gray-900); padding: 5rem 0; overflow: hidden; }
.mission-section::after { content: ''; position: absolute; right: 0; top: 0; width: 33%; height: 100%; background: rgba(220,38,38,0.05); }
.mission-quote { font-size: clamp(1.5rem, 4vw, 3rem); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; line-height: 1.2; }
.mission-attribution { display: flex; align-items: center; gap: 0.75rem; margin-top: 2rem; justify-content: center; }
.mission-attribution .line { height: 2px; width: 2.5rem; background: var(--red); }
.mission-attribution span { color: var(--gray-400); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-lg-2 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .stat-card-red { bottom: -1rem; left: -0.5rem; }
  .stat-card-white { top: -0.5rem; right: -0.5rem; }
}

@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .table-header span, .table-row .col-feature { font-size: 0.75rem; }
  .table-header, .table-row { padding: 0.75rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cta-bar .inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 20rem; justify-content: center; }
  .hero-strip-inner { flex-direction: column; text-align: center; }
  .hero-strip-divider { display: none; }

  .page-hero.page-hero-titlebar {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
  }

  .page-hero.page-hero-titlebar .page-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-hero.page-hero-titlebar .page-hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .section, .section-lg { padding: 3rem 0; }
}

/* SVG icons inline */
.icon { display: inline-block; vertical-align: middle; }\n

/* ── BEFORE / AFTER GALLERY ── */
.before-after-gallery-grid {
  columns: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.before-after-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  break-inside: auto;
  margin-bottom: 0;
  cursor: pointer;
}

.before-after-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--gray-100);
}

.before-after-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gray-50);
}

.before-after-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.before-after-card:hover .before-after-panel img {
  transform: scale(1.03);
}

.before-after-badge {
  position: absolute;
  top: 0.75rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  color: var(--white);
  z-index: 2;
  text-transform: uppercase;
}

.before-badge {
  left: 0.75rem;
  background: var(--gray-700);
}

.after-badge {
  right: 0.75rem;
  background: var(--red);
}

.before-after-caption {
  padding: 1rem 1rem 1.15rem;
}

.before-after-caption h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.before-after-caption p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.65;
}

.standard-gallery-item {
  break-inside: avoid;
}

.standard-gallery-item img {
  width: 100%;
  display: block;
}

@media (max-width: 900px) {
  .before-after-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .before-after-wrapper {
    grid-template-columns: 1fr;
  }

  .before-after-panel {
    aspect-ratio: 4 / 3;
  }

  .after-badge {
    right: auto;
    left: 0.75rem;
  }
}\n

/* ── DRAG SLIDER BEFORE / AFTER GALLERY ── */
.slider-gallery-grid {
  columns: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.before-after-slider-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  break-inside: auto;
  margin-bottom: 0;
}

.before-after-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gray-50);
  user-select: none;
  cursor: ew-resize;
}

.before-after-slider.dragging {
  cursor: ew-resize;
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-before-image {
  z-index: 1;
}

.slider-after-layer {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  z-index: 2;
  height: 100%;
}

.slider-after-image {
  inset: 0;
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  z-index: 3;
  pointer-events: none;
}

.slider-divider::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.slider-handle-line {
  width: 2px;
  height: 18px;
  background: var(--gray-400);
  border-radius: 999px;
}

.slider-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.slider-arrow-left {
  border-right: 7px solid var(--gray-600);
}

.slider-arrow-right {
  border-left: 7px solid var(--gray-600);
}

.before-after-tag {
  position: absolute;
  top: 0.85rem;
  z-index: 4;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.before-tag {
  left: 0.85rem;
  background: var(--gray-700);
}

.after-tag {
  right: 0.85rem;
  background: var(--red);
}

@media (max-width: 900px) {
  .slider-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .before-after-slider {
    aspect-ratio: 4 / 3;
  }

  .slider-handle {
    width: 46px;
    height: 46px;
  }

  .before-after-tag {
    top: 0.7rem;
  }
}
