/* Brian W Long Plumbing Inc. - Global Styles */
/* Palette: Steel Blue #2C5F8A + Amber #D97706 + Dark Navy #1A2332 + Cream #F8F4EE */
/* Fonts: Teko (display) + IBM Plex Sans (body) */

@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary: #2C5F8A;
  --primary-dark: #1e4266;
  --primary-light: #3d7ab5;
  --accent: #D97706;
  --accent-light: #f59e1d;
  --dark: #1A2332;
  --dark-mid: #2d3a4a;
  --bg: #F8F4EE;
  --surface: #ffffff;
  --text: #1A2332;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #dde3eb;
  --shadow: 0 4px 20px rgba(26,35,50,0.1);
  --shadow-lg: 0 8px 40px rgba(26,35,50,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

/* ── Skip Link ──────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--accent); color: #fff;
  padding: .5rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600; text-decoration: none; z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Top Bar ────────────────────────────────── */
.top-bar { background: var(--dark); color: rgba(255,255,255,.8); font-size: .8rem; padding: .4rem 0; letter-spacing: .03em; }
.top-bar .inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.top-bar a { color: var(--accent-light); text-decoration: none; font-weight: 500; }
.top-bar a:hover { color: #fff; }

/* ── Navigation ─────────────────────────────── */
.site-header { background: var(--surface); border-bottom: 3px solid var(--primary); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(26,35,50,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: .8rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo-wrap { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.logo-name { font-family: 'Teko', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); letter-spacing: .02em; text-transform: uppercase; }
.logo-tagline { font-size: .7rem; color: var(--text-light); letter-spacing: .06em; text-transform: uppercase; }
.nav-links { list-style: none; display: flex; gap: 0; }
.nav-links a { display: block; padding: .5rem .9rem; font-size: .88rem; font-weight: 500; color: var(--text-mid); text-decoration: none; text-transform: uppercase; letter-spacing: .06em; border-radius: var(--radius); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--primary); background: rgba(44,95,138,.07); }
.nav-cta { background: var(--accent) !important; color: #fff !important; border-radius: var(--radius) !important; padding: .5rem 1.1rem !important; }
.nav-cta:hover { background: var(--accent-light) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .4rem; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; display: block; }

/* ── Hero ───────────────────────────────────── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(26,35,50,.88) 0%, rgba(26,35,50,.6) 55%, rgba(44,95,138,.4) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; color: #fff; }
.hero-eyebrow { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; background: var(--accent); color: #fff; padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.25rem; }
.hero h1 { font-family: 'Teko', sans-serif; font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 700; line-height: 1.0; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 1.25rem; max-width: 750px; }
.hero h1 span { color: var(--accent-light); }
.hero-desc { font-size: 1.15rem; line-height: 1.7; opacity: .9; max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: .95rem; text-decoration: none; cursor: pointer; border: none; transition: transform .2s, box-shadow .2s, background .2s; letter-spacing: .02em; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(217,119,6,.3); }
.btn-primary:hover { background: var(--accent-light); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-dark); }

.hero-trust { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-badge { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.85); }
.trust-badge svg { flex-shrink: 0; }

/* ── Section Utilities ───────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.section-title { font-family: 'Teko', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.1; letter-spacing: .02em; text-transform: uppercase; color: var(--dark); margin-bottom: 1rem; }
.section-title span { color: var(--primary); }
.section-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; line-height: 1.75; }

/* ── Stats Band ──────────────────────────────── */
.stats-band { background: var(--primary); padding: 4rem 1.5rem; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-item { color: #fff; padding: 1rem; }
.stat-number { font-family: 'Teko', sans-serif; font-size: 3.5rem; font-weight: 700; line-height: 1; color: var(--accent-light); display: block; }
.stat-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; margin-top: .3rem; display: block; }

/* ── Services Grid ───────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--surface); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { width: 48px; height: 48px; background: rgba(44,95,138,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--primary); }
.service-card h3 { font-family: 'Teko', sans-serif; font-size: 1.35rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--dark); margin-bottom: .5rem; }
.service-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }

/* ── Two-Column Layout ───────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.col-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.col-img::after { content: ''; position: absolute; bottom: -12px; right: -12px; width: 80%; height: 80%; background: var(--primary); z-index: -1; border-radius: var(--radius-lg); opacity: .15; }

/* ── Testimonials Carousel ───────────────────── */
.testimonials-section { background: var(--dark); }
.testimonials-section .section-title { color: #fff; }
.testimonial-carousel { position: relative; max-width: 760px; margin: 0 auto; overflow: hidden; }
.tc-track { display: flex; transition: transform .5s ease; }
.tc-slide { min-width: 100%; padding: 2.5rem 1rem; text-align: center; }
.tc-stars { color: var(--accent-light); font-size: 1.3rem; margin-bottom: 1rem; letter-spacing: .1em; }
.tc-quote { font-size: 1.1rem; line-height: 1.8; font-style: italic; color: rgba(255,255,255,.9); margin-bottom: 1.25rem; }
.tc-quote::before { content: '\201C'; font-family: 'Teko', sans-serif; font-size: 4rem; line-height: 0; vertical-align: -.7rem; color: var(--accent); opacity: .5; margin-right: .05em; }
.tc-cite { font-size: .9rem; font-weight: 600; color: var(--accent-light); letter-spacing: .05em; }
.tc-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.tc-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.3); cursor: pointer; transition: background .3s, transform .3s; }
.tc-dot.active { background: var(--accent); transform: scale(1.2); }

/* ── FAQ Accordion ───────────────────────────── */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--dark); gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron { flex-shrink: 0; transition: transform .3s; color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: .75rem 0 .5rem; line-height: 1.75; color: var(--text-mid); font-size: .95rem; }

/* ── Before/After Slider ─────────────────────── */
.ba-section { background: var(--dark-mid); }
.ba-section .section-title { color: #fff; }
.ba-section .section-desc { color: rgba(255,255,255,.7); }
.ba-slider { position: relative; overflow: hidden; max-width: 750px; margin: 2.5rem auto 0; border-radius: var(--radius-lg); aspect-ratio: 16/10; user-select: none; box-shadow: var(--shadow-lg); }
.ba-slider img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.ba-before img { width: var(--ba-full-w, 100%); height: 100%; object-fit: cover; display: block; }
.ba-handle { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; background: white; cursor: ew-resize; transform: translateX(-50%); z-index: 2; box-shadow: 0 0 8px rgba(0,0,0,.4); }
.ba-handle-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0,0,0,.25); color: var(--primary); font-size: 1.4rem; }
.ba-labels { position: absolute; bottom: .75rem; z-index: 3; width: 100%; display: flex; justify-content: space-between; padding: 0 1rem; pointer-events: none; }
.ba-label { background: rgba(26,35,50,.75); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 100px; }

/* ── Service Area Map ────────────────────────── */
#service-map, #contact-map { height: 360px; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); }

/* ── Gallery Grid ────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .75rem; margin-top: 2rem; }
.gallery-img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); cursor: pointer; transition: transform .3s, box-shadow .3s; display: block; }
.gallery-img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
#lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.9); align-items: center; justify-content: center; cursor: zoom-out; }
#lightbox.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
#lightbox-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,.1); border: none; color: white; font-size: 2rem; cursor: pointer; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
#lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ── Contact Form ────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info-block h3 { font-family: 'Teko', sans-serif; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .03em; color: var(--dark); margin-bottom: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; color: var(--text-mid); font-size: .95rem; }
.contact-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.contact-detail strong { display: block; color: var(--dark); font-weight: 600; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .15rem; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: .25rem .75rem; font-size: .9rem; color: var(--text-mid); }
.hours-grid .day { font-weight: 600; color: var(--dark); }

form.contact-form { background: var(--surface); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; letter-spacing: .03em; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: .75rem 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: .95rem; color: var(--text); background: var(--bg); transition: border-color .2s, box-shadow .2s; outline: none; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(44,95,138,.12); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: #dcfce7; color: #166534; padding: 1rem 1.25rem; border-radius: var(--radius); font-weight: 500; margin-bottom: 1rem; border: 1px solid #86efac; }
.form-error { display: none; background: #fee2e2; color: #991b1b; padding: 1rem 1.25rem; border-radius: var(--radius); font-weight: 500; margin-bottom: 1rem; border: 1px solid #fca5a5; }

/* ── Team ────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card { background: var(--surface); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); }
.team-avatar { width: 80px; height: 80px; background: rgba(44,95,138,.12); border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.team-card h3 { font-family: 'Teko', sans-serif; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .05em; color: var(--dark); margin-bottom: .2rem; }
.team-card .role { font-size: .85rem; color: var(--accent); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ── Credentials ─────────────────────────────── */
.credentials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.credential-card { background: var(--surface); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); border-left: 4px solid var(--primary); }
.credential-card h4 { font-family: 'Teko', sans-serif; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; color: var(--primary); margin-bottom: .25rem; }
.credential-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }

/* ── Services Full List ──────────────────────── */
.services-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.service-list-item { background: var(--surface); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.service-list-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-list-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(44,95,138,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.service-list-item h3 { font-family: 'Teko', sans-serif; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); margin-bottom: .35rem; }
.service-list-item p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* ── Payment ─────────────────────────────────── */
.payment-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.payment-badge { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: .5rem 1.1rem; font-size: .85rem; font-weight: 500; color: var(--text-mid); box-shadow: 0 1px 4px rgba(0,0,0,.06); }

/* ── CTA Band ────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 5rem 1.5rem; text-align: center; color: #fff; }
.cta-band h2 { font-family: 'Teko', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 1rem; }
.cta-band p { opacity: .85; font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Footer ──────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 4rem 1.5rem 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo-name { color: rgba(255,255,255,.95); font-size: 1.5rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); margin-top: 1rem; line-height: 1.7; }
.footer-col h4 { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent-light); }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .85rem; font-size: .88rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact-item a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-license { background: rgba(255,255,255,.06); padding: .3rem .75rem; border-radius: 100px; font-size: .75rem; color: rgba(255,255,255,.5); }

/* ── Page Hero ───────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%); padding: 4rem 1.5rem; color: #fff; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: 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='0.02'%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"); }
.page-hero .section-title { color: #fff; }
.page-hero .section-desc { color: rgba(255,255,255,.75); margin: .5rem auto 0; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: .4rem; }
.breadcrumb a { color: var(--accent-light); text-decoration: none; }

/* ── Floating CTA ────────────────────────────── */
.floating-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; background: var(--accent); color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(217,119,6,.4); transition: transform .2s, box-shadow .2s; text-decoration: none; }
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(217,119,6,.5); }
.floating-cta:focus-visible { outline: 3px solid var(--accent-light); outline-offset: 4px; }

/* ── Scroll Reveal ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); padding: 1rem; border-bottom: 2px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .stat-number { font-size: 2.8rem; }
  .section { padding: 3.5rem 1.25rem; }
  .col-img::after { display: none; }
}
@media (max-width: 480px) {
  .hero-trust { flex-direction: column; gap: .75rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}
