/* =========================================================
   M&J Stilp Ltd — Redesign Stylesheet
   ========================================================= */

:root {
  --navy: #0d0d0d;
  --navy-dark: #000000;
  --navy-light: #222222;
  --amber: #d4af37;
  --amber-dark: #a8842a;
  --ink: #141414;
  --muted: #62605a;
  --line: #e6e2d8;
  --bg: #f7f6f2;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.10);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.16);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.24);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { line-height: 1.7; color: var(--muted); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--amber-dark));
  z-index: 1200;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: height 0.35s var(--ease), background 0.35s var(--ease);
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(0, 0, 0, 0.97);
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand img {
  height: 44px;
  width: auto;
  transition: height 0.35s var(--ease);
}
.site-header.is-scrolled .brand img { height: 36px; }
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-name span { color: var(--amber); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s ease;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.btn:hover::before { transform: scaleX(1); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--amber);
  color: var(--navy-dark);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}
.btn-primary::before { background: var(--amber-dark); }
.btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(212, 175, 55, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline::before { background: rgba(255,255,255,0.12); }
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.btn-dark::before { background: var(--navy-light); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.45); }

.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.68) 45%, rgba(0,0,0,0.92) 100%);
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-inner { position: relative; z-index: 1; }
.hero-inner .eyebrow { color: var(--amber); }
.hero h1 { color: var(--white); max-width: 820px; }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero {
  min-height: 46vh;
  padding-top: var(--header-h);
}
.page-hero h1 { color: var(--white); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }
.reveal-delay-4.is-visible { transition-delay: 0.4s; }

/* ---------- Trust / cert strip ---------- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-grid img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(45%);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s var(--ease);
}
.trust-grid img:hover { filter: grayscale(0%); opacity: 1; transform: translateY(-3px); }

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 16px;
  border: 1px dashed rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.cert-badge .ph-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  flex-shrink: 0;
}
.cert-badge:hover { border-color: rgba(212, 175, 55, 0.9); transform: translateY(-3px); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--amber-dark);
}
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ---------- Cards / services grid ---------- */
.grid { display: grid; gap: 28px; }
.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: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { flex: 1; font-size: 0.92rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-top: 12px;
}
.card-link .arrow { transition: transform 0.3s var(--ease); }
.card:hover .card-link .arrow { transform: translateX(5px); }

/* ---------- Feature list (checkmarks) ---------- */
.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 9px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Placeholders (photo & text pending) ---------- */
.placeholder-photo {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    repeating-linear-gradient(135deg, rgba(212,175,55,0.06) 0 12px, transparent 12px 24px),
    var(--navy);
  border: 1px dashed rgba(212, 175, 55, 0.45);
  color: var(--amber);
  text-align: center;
  min-height: 100%;
}
.placeholder-photo .ph-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.placeholder-photo .ph-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tbd {
  display: inline-block;
  padding: 2px 10px;
  border: 1px dashed rgba(212, 175, 55, 0.6);
  border-radius: 999px;
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--amber-dark);
  white-space: nowrap;
}
.hero-inner .tbd, .site-header .tbd, .site-footer .tbd, .page-hero .tbd {
  color: var(--amber);
  border-color: rgba(212, 175, 55, 0.7);
}

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.2; }
.split-media .placeholder-photo { aspect-ratio: 4/3.2; }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  padding: 0 0 26px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card h3 { margin: 20px 0 2px; }
.team-role { color: var(--amber-dark); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card p { font-size: 0.88rem; padding: 0 20px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item::after {
  content: '\2795';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1300;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 10px;
  transform: scale(0.92);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: var(--white); font-size: 2rem;
  background: none; border: none; cursor: pointer;
  line-height: 1;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.28), transparent 70%);
  top: -120px; right: -80px;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 0; }

/* ---------- Info strip (location/hours/contact) ---------- */
.info-strip {
  background: var(--white);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.info-item {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.info-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.info-item .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--amber);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.info-item h3 { margin-bottom: 6px; font-size: 1.05rem; }
.info-item p { margin: 0; font-size: 0.92rem; }
.info-item a { color: var(--navy); font-weight: 600; }
.info-item a:hover { color: var(--amber-dark); }

/* ---------- Contact form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.22);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none;
  background: #eafaf0;
  border: 1px solid #b7e8c6;
  color: #1c7a41;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.is-visible { display: block; }
.form-error {
  display: none;
  background: #fbeaea;
  border: 1px solid #f0b9b9;
  color: #a02a2a;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-error.is-visible { display: block; }
.field-honeypot { position: absolute; left: -9999px; top: -9999px; }

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.areas-list li {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.areas-list li:hover { background: var(--amber); color: var(--navy-dark); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 38px; }
.footer-brand span { color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

.back-to-top {
  position: fixed;
  right: 24px; bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy-dark);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 900;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px) scale(1.05); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w { max-width: 640px; }
.mt-lg { margin-top: 56px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px 24px 30px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open a { padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .header-cta.is-open { display: flex; padding: 0 24px 24px; background: var(--navy-dark); }
  .split, .contact-wrap { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 36px; flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .stats-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { gap: 26px; }
  .trust-grid img { height: 38px; }
  .cert-badge { height: 38px; padding: 0 12px; font-size: 0.7rem; }
}
