:root {
  --bg: #0d0f11;
  --bg-2: #14171a;
  --surface: #191d21;
  --surface-2: #21262b;
  --line: #2b3238;
  --steel: #8a949c;
  --steel-light: #c4ccd2;
  --text: #e9edf0;
  --text-dim: #a4adb4;
  --accent: #f26a1b;
  --accent-2: #ff8534;
  --accent-glow: rgba(242, 106, 27, 0.35);
  --copper: #c9772f;
  --radius: 6px;
  --maxw: 1200px;
  --font-head: 'Oswald', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 860px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: 0.2px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 42px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 30px; height: 2px; background: var(--accent); transform: translateY(-50%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  font-size: 0.85rem; padding: 13px 26px; border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent; transition: all .25s ease; white-space: nowrap;
}
.btn-lg { padding: 16px 34px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 6px 22px -6px var(--accent-glow); }
.btn-accent:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 30px -8px var(--accent-glow); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb857; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all .3s ease;
  background: linear-gradient(180deg, rgba(13,15,17,.75), rgba(13,15,17,0));
}
.site-header.scrolled {
  padding: 12px 0; background: rgba(13,15,17,.96);
  border-bottom: 1px solid var(--line); box-shadow: 0 8px 30px -12px rgba(0,0,0,.6);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-logo { height: 44px; width: auto; display: block; }
.footer-brand .brand-logo { height: 40px; }
.brand-mark { color: var(--accent); display: flex; }
.brand-text { font-family: var(--font-head); font-weight: 500; font-size: 1.18rem; letter-spacing: 1px; }
.brand-text strong { color: var(--accent); font-weight: 700; margin-left: 5px; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; letter-spacing: .5px; color: var(--steel-light); transition: color .2s; position: relative; }
.main-nav a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width .25s; }
.main-nav a:not(.nav-cta):hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.nav-cta { color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: all .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: #0a0c0e url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05); animation: heroZoom 20s ease-out forwards; z-index: 0;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(115deg, rgba(10,12,14,.94) 0%, rgba(10,12,14,.78) 45%, rgba(10,12,14,.45) 100%),
    linear-gradient(0deg, rgba(10,12,14,.9) 0%, rgba(10,12,14,0) 40%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 24px 80px; }
.hero-title { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; max-width: 16ch; text-transform: uppercase; letter-spacing: 1px; }
.hero-title { background: linear-gradient(180deg, #fff 55%, var(--steel)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-dim); max-width: 56ch; margin: 22px 0 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 60px; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: var(--font-head); font-size: 2rem; color: #fff; }
.hero-stats span { color: var(--text-dim); font-size: 0.9rem; letter-spacing: .5px; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--accent); border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--accent); color: #fff; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding: 18px 24px; }
.trust-inner span { font-family: var(--font-head); font-weight: 500; letter-spacing: .8px; font-size: 0.9rem; text-transform: uppercase; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); text-transform: uppercase; }
.section-head p { color: var(--text-dim); margin-top: 14px; }
.center-btn { text-align: center; margin-top: 48px; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; transition: all .3s ease; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.card:hover { transform: translateY(-6px); border-color: #3a434b; background: var(--surface-2); }
.card:hover::before { transform: scaleX(1); }
.svc-icon { display: inline-flex; padding: 14px; border-radius: var(--radius); background: rgba(242,106,27,.1); color: var(--accent); margin-bottom: 20px; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.svc-card p { color: var(--text-dim); font-size: 0.96rem; }
.svc-card--lg { padding: 40px 32px; }

/* ---------- About strip ---------- */
.about-strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-visual {
  min-height: 440px; border-radius: var(--radius); position: relative;
  background: #0a0c0e url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  border: 1px solid var(--line);
}
.about-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(242,106,27,.15), transparent 60%); border-radius: var(--radius); }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-transform: uppercase; margin-bottom: 18px; }
.about-text p { color: var(--text-dim); margin-bottom: 24px; }
.check-list { list-style: none; margin-bottom: 30px; }
.check-list li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--steel-light); }
.check-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; background: var(--accent); clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 0, 40% 68%); }

/* ---------- References ---------- */
.refs-section { background: var(--bg); }
.ref-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .3s ease; }
.ref-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 20px 40px -20px rgba(0,0,0,.7); }
.ref-thumb { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, #1c2126, #0f1214); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.ref-thumb-fallback { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: rgba(255,255,255,.08); letter-spacing: 4px; }
.ref-cat { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: 3px; text-transform: uppercase; letter-spacing: .5px; }
.ref-count { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,.6); color: #fff; font-size: 0.72rem; padding: 4px 10px; border-radius: 3px; }
.ref-body { padding: 22px 24px; }
.ref-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.ref-card:hover .ref-body h3 { color: var(--accent); }
.ref-meta { color: var(--text-dim); font-size: 0.9rem; }
.empty-note { text-align: center; color: var(--text-dim); padding: 60px 0; border: 1px dashed var(--line); border-radius: var(--radius); }

/* ---------- Contact ---------- */
.contact-cta { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); text-transform: uppercase; margin-bottom: 16px; }
.contact-info p { color: var(--text-dim); margin-bottom: 28px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list li span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 3px; }
.contact-list li a, .contact-list li { color: var(--steel-light); }

/* ---------- Forms ---------- */
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 7px; color: var(--steel-light); }
.field input, .field textarea, .field select {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; color: var(--text); font-family: var(--font-body); font-size: 0.96rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.field textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { margin-top: 14px; font-size: 0.92rem; min-height: 1.2em; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: #f87171; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.95rem; }
.alert-success { background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.4); color: #9ff0b6; }
.alert-error { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.4); color: #fca5a5; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 190px 0 90px; overflow: hidden; background: #0a0c0e center/cover no-repeat; }
.page-hero .hero-overlay { background: linear-gradient(120deg, rgba(10,12,14,.94), rgba(10,12,14,.6)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); text-transform: uppercase; }
.page-hero p { color: var(--text-dim); margin-top: 12px; font-size: 1.1rem; max-width: 60ch; }
.page-hero--about { background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1920&q=80'); }
.page-hero--services { background-image: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1920&q=80'); }
.page-hero--refs { background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80'); }
.page-hero--contact { background-image: url('https://images.unsplash.com/photo-1531973576160-7125cd663d86?auto=format&fit=crop&w=1920&q=80'); }

/* ---------- Prose / values ---------- */
.prose p { color: var(--text-dim); margin-bottom: 18px; font-size: 1.05rem; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 28px; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #fff; }
.value-card p { color: var(--text-dim); font-size: 0.96rem; }

/* ---------- Band / stats ---------- */
.band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.band-item strong { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--accent); }
.band-item span { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- Process ---------- */
.process-list { list-style: none; margin-top: 40px; }
.process-list li { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.process-list li span { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--accent); min-width: 60px; }
.process-list h4 { font-size: 1.2rem; margin-bottom: 4px; }
.process-list p { color: var(--text-dim); }

/* ---------- CTA strip ---------- */
.cta-strip { position: relative; padding: 80px 0; overflow: hidden; }
.cta-strip-bg { position: absolute; inset: 0; background: linear-gradient(120deg, var(--accent), var(--copper)); }
.cta-strip-bg::after { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M0 40L40 0" stroke="rgba(0,0,0,0.08)" stroke-width="6"/></svg>'); opacity: .5; }
.cta-strip-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: uppercase; }
.cta-strip-inner p { color: rgba(255,255,255,.85); }
.cta-strip .btn-accent { background: #111417; }
.cta-strip .btn-accent:hover { background: #000; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.filter-chip { background: var(--surface); border: 1px solid var(--line); color: var(--steel-light); font-family: var(--font-head); font-weight: 500; letter-spacing: .5px; padding: 9px 20px; border-radius: 40px; cursor: pointer; transition: all .2s; }
.filter-chip:hover { border-color: var(--accent); color: #fff; }
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Reference detail ---------- */
.ref-detail-hero { position: relative; padding: 200px 0 80px; background: #0a0c0e center/cover no-repeat; }
.ref-detail-hero .hero-overlay { background: linear-gradient(0deg, rgba(10,12,14,.96), rgba(10,12,14,.5)); }
.ref-detail-hero .container { position: relative; z-index: 2; }
.ref-detail-hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); text-transform: uppercase; margin-top: 8px; }
.back-link { display: inline-block; color: var(--text-dim); margin-bottom: 18px; font-size: 0.9rem; }
.back-link:hover { color: var(--accent); }
.ref-detail-meta { display: flex; gap: 28px; margin-top: 16px; flex-wrap: wrap; color: var(--steel-light); }
.ref-detail-meta strong { color: var(--accent); }
.gallery-title { font-size: 1.6rem; text-transform: uppercase; margin: 48px 0 24px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.video-grid video { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); background: #000; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(6,7,8,.96); z-index: 1000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-img { max-width: 88vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 30px 80px -20px #000; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; cursor: pointer; width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--accent); border-color: var(--accent); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Footer ---------- */
.site-footer { background: #08090a; border-top: 1px solid var(--line); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { margin-bottom: 18px; }
.footer-desc { color: var(--text-dim); font-size: 0.95rem; max-width: 46ch; }
.footer-col h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; color: #fff; }
.footer-col a, .footer-addr { display: block; color: var(--text-dim); margin-bottom: 10px; font-size: 0.94rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 16px; margin-top: 14px; }
.footer-social a { margin-bottom: 0; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom span, .footer-bottom a { color: var(--text-dim); font-size: 0.86rem; }
.footer-links a:hover { color: var(--accent); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 58px; height: 58px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px -8px rgba(37,211,102,.6); transition: transform .25s; animation: fabPulse 2.4s infinite; }
.whatsapp-fab:hover { transform: scale(1.1); }
@keyframes fabPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 300px; }
  .value-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .gallery, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: var(--bg-2); border-left: 1px solid var(--line); flex-direction: column;
    align-items: flex-start; justify-content: center; gap: 26px; padding: 40px; transition: right .35s ease; z-index: 99;
  }
  .main-nav.open { right: 0; }
  .main-nav a { font-size: 1.2rem; }
  body.nav-open { overflow: hidden; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 70px 0; }
  .hero-stats { gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery, .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; align-items: center; }
}
