/* Tidy Guys — Nashville's Commercial Cleaning Company */
/* Design system: clean, trust-forward, mobile-first */

:root {
  /* Brand: Tidy Guys — black wordmark + brand red (matches WGAI brand config) */
  --red-900: #7f1d1d;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --red-600: #C62828;  /* OFFICIAL brand primary */
  --red-500: #D32F2F;  /* OFFICIAL brand accent */
  --red-400: #ef5350;
  /* Aliased for legacy class compat — same red ramp */
  --teal-900: #1a1a1a;
  --teal-700: #C62828;
  --teal-500: #D32F2F;
  --green-500: #C62828;
  --green-600: #b91c1c;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --cream: #fafaf7;
  --white: #ffffff;
  --amber-500: #f59e0b;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --maxw: 1200px;
  --maxw-narrow: 880px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal-900); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--slate-900); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--slate-700); }
p:last-child { margin-bottom: 0; }

ul { padding-left: 1.25rem; margin-bottom: 1rem; color: var(--slate-700); }
li { margin-bottom: 0.4rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 1.25rem; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--slate-900);
  color: var(--slate-100);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--slate-100); }
.topbar a:hover { color: var(--teal-500); }
.topbar-left, .topbar-right { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.topbar svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }

/* ===== HEADER / NAV ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 0.9rem; padding-bottom: 0.9rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.35rem; color: var(--slate-900); letter-spacing: -0.02em; }
.logo:hover { color: var(--red-600); }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  max-width: 240px;
}
.footer .logo-img {
  height: 64px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--red-700), var(--red-500));
  border-radius: 10px;
  display: grid; place-items: center;
  color: white; font-weight: 800; font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; gap: 0.4rem; align-items: center; }
.nav a { color: var(--slate-700); padding: 0.5rem 0.85rem; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.95rem; }
.nav a:hover, .nav a.active { color: var(--teal-700); background: var(--slate-50); }
.nav .btn { margin-left: 0.5rem; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
.menu-toggle svg { width: 26px; height: 26px; stroke: var(--slate-900); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--teal-700); color: white; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-900); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--green-500); color: white; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--green-600); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--slate-900); border-color: var(--slate-300); }
.btn-ghost:hover { border-color: var(--teal-700); color: var(--teal-700); }
.btn-white { background: white; color: var(--teal-900); }
.btn-white:hover { background: var(--cream); color: var(--teal-900); }
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1a1a1a 50%, #7f1d1d 100%);
  color: white;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.22) 0%, transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero p.lede { color: rgba(255, 255, 255, 0.9); font-size: clamp(1.05rem, 1.5vw, 1.2rem); margin-bottom: 1.75rem; max-width: 36rem; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.85); }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-trust svg { width: 16px; height: 16px; stroke: var(--green-500); }

.hero-card {
  background: white;
  color: var(--slate-900);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.hero-card h3 { margin-bottom: 0.5rem; }
.hero-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.hero-card .form-row { margin-bottom: 0.75rem; }
.hero-card label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.3rem; }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%; padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--slate-200); border-radius: var(--radius-md);
  font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus {
  outline: none; border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

/* ===== SECTIONS ===== */
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.section-cream { background: var(--cream); }
.section-slate { background: var(--slate-50); }
.section-dark { background: var(--slate-900); color: var(--slate-100); }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: var(--slate-300); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { font-size: 1.05rem; color: var(--slate-700); }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}
.section-dark .section-head .eyebrow { color: var(--teal-500); }

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

.card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-500); }
.card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal-700), var(--green-500));
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  color: white;
  margin-bottom: 1rem;
}
.card-icon svg { width: 24px; height: 24px; stroke: white; }
.card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.card p { font-size: 0.95rem; margin-bottom: 1rem; }
.card-link { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 600; font-size: 0.9rem; color: var(--teal-700); }
.card-link:hover { color: var(--teal-900); }
.card-link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* ===== FEATURE LIST ===== */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--slate-700);
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--green-500);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ===== STAT BAND ===== */
.stat-band {
  background: linear-gradient(135deg, #0f172a 0%, #1a1a1a 100%);
  color: white;
  padding: 3rem 0;
  border-top: 4px solid var(--red-600);
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat .num { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--red-500); letter-spacing: -0.02em; line-height: 1; }
.stat .lab { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); margin-top: 0.4rem; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #0f172a 0%, #1a1a1a 50%, #7f1d1d 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: white; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.75rem; font-size: 1.1rem; }
.cta-band .btn-row { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.testimonial p { font-style: italic; color: var(--slate-900); margin-bottom: 1rem; font-size: 1rem; }
.testimonial-author { font-weight: 700; color: var(--slate-900); font-size: 0.9rem; }
.testimonial-meta { font-size: 0.85rem; color: var(--slate-500); }
.stars { color: var(--amber-500); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
details.faq {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.15s ease;
}
details.faq:hover { border-color: var(--teal-500); }
details.faq[open] { border-color: var(--teal-500); }
details.faq summary {
  cursor: pointer; font-weight: 600; color: var(--slate-900);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-weight: 400; font-size: 1.5rem;
  color: var(--teal-700);
  transition: transform 0.2s ease;
}
details.faq[open] summary::after { content: '−'; }
details.faq p { margin-top: 0.85rem; font-size: 0.95rem; color: var(--slate-700); }

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  font-size: 0.85rem; color: var(--slate-500);
  padding: 1rem 0; border-bottom: 1px solid var(--slate-100);
}
.breadcrumb a { color: var(--slate-500); }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--slate-300); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #0f172a 0%, #1a1a1a 50%, #7f1d1d 100%);
  color: white;
  padding: 3.5rem 0 3rem;
  text-align: center;
  border-bottom: 4px solid var(--red-600);
}
.page-header h1 { color: white; margin-bottom: 0.75rem; }
.page-header p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }

/* ===== TWO-COLUMN LAYOUT (service detail pages) ===== */
.two-col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: flex-start; }
.two-col .sidebar {
  position: sticky; top: 100px;
  background: var(--cream);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.two-col .sidebar h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.two-col .sidebar .nap { font-size: 0.95rem; line-height: 1.6; }
.two-col .sidebar .nap strong { color: var(--slate-900); }
.two-col h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.two-col h2:first-child { margin-top: 0; }
.two-col h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }

/* ===== FORMS ===== */
.form-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.35rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--slate-200); border-radius: var(--radius-md);
  font-family: inherit; font-size: 0.95rem;
  background: white;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-help { font-size: 0.8rem; color: var(--slate-500); margin-top: 0.3rem; }

/* ===== COMING-SOON BANNER ===== */
.coming-soon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fbbf24;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.coming-soon h2 { color: #92400e; margin-bottom: 0.5rem; }
.coming-soon p { color: #78350f; }
.coming-soon .badge {
  display: inline-block;
  background: #f59e0b; color: white;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== INDUSTRY BADGES ===== */
.industries { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.industry-tag {
  background: white; border: 1px solid var(--slate-200);
  padding: 0.4rem 0.85rem;
  border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  color: var(--slate-700);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer h4 { color: white; font-size: 0.95rem; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.footer a { color: var(--slate-300); display: inline-block; padding: 3px 0; }
.footer a:hover { color: var(--teal-500); }
.footer li a { display: block; padding: 5px 0; } /* larger tap target on mobile */
.footer .logo { color: white; margin-bottom: 1rem; }
.footer .footer-tagline { font-size: 0.92rem; color: var(--slate-300); margin-bottom: 1.25rem; max-width: 30ch; }
.footer .nap-block { font-size: 0.92rem; line-height: 1.7; }
.footer .nap-block strong { color: white; }
.footer .nap-block svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--teal-500); }
/* Each nap-block row: flex so icon + text sit side-by-side, position:relative anchors the tap overlay */
.footer .nap-block > div { display: flex; align-items: center; gap: 6px; padding: 3px 0; position: relative; min-height: 44px; }
/* Make the email link clearly teal and visually obvious */
.footer .nap-block a[href^="mailto"] { color: var(--teal-400) !important; }
/* Extend the tap target to cover the full row (icon + text) via pseudo-element overlay */
.footer .nap-block a[href^="mailto"]::after { content: ''; position: absolute; inset: 0; }
/* nap-link: used when SVG is wrapped inside the anchor (updated HTML) */
.nap-link { display: flex !important; align-items: center; gap: 6px; padding: 6px 0 !important; color: var(--teal-400) !important; min-height: 44px; }
.footer-bottom {
  border-top: 1px solid var(--slate-700);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
  color: var(--slate-500);
}
.footer-bottom a { color: var(--slate-500); }
.footer-bottom a:hover { color: var(--teal-500); }
.social-row { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%; background: var(--slate-700);
  display: grid; place-items: center;
  transition: background 0.15s ease;
}
.social-row a:hover { background: var(--teal-700); }
.social-row svg { width: 18px; height: 18px; stroke: white; fill: none; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col .sidebar { position: static; }
}
@media (max-width: 680px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 1rem; box-shadow: var(--shadow-md); border-top: 1px solid var(--slate-200); align-items: stretch; gap: 0.25rem; }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 1rem; }
  .menu-toggle { display: block; }
  .header { position: relative; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 4rem; }
  .section { padding: 3rem 0; }
  .topbar { font-size: 0.8rem; }
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
}

/* Photo cards (services grid) */
.card-photo {
  padding: 0;
  overflow: hidden;
}
.card-photo .card-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  height: 190px;
}
.card-photo .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.card-photo:hover .card-img-wrap img {
  transform: scale(1.05);
}
.card-body {
  padding: 1.5rem;
}
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.card-body p  { font-size: 0.95rem; margin-bottom: 1rem; }

/* Photo sections */
.team-photo-wrap {
  padding: 2rem 0 0;
}
.team-photo-wrap img {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 14px;
  display: block;
}

/* Before / After pairs */
.ba-section { margin: 2rem 0; }
.ba-section h3 { font-size: 1rem; font-weight: 600; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ba-item { position: relative; }
.ba-item img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.ba-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(15,23,42,0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}
.ba-badge.after { background: rgba(22,163,74,0.88); }

/* Action detail shots */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.action-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
}

@media (max-width: 640px) {
  .ba-pair { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .action-grid { grid-template-columns: 1fr 1fr; }
  .ba-item img, .action-grid img { aspect-ratio: 1 / 1; }
}

/* Print */
@media print {
  .header, .footer, .topbar, .hero-card, .cta-band { display: none; }
  body { color: black; }
}

