@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
  --red: #ff1d3f;
  --blue: #3d8aff;
  --blue-bright: #5fa3ff;
  --blue-dim: rgba(61, 138, 255, 0.12);
  --gold: #d4a843;
  --gold-light: #e8c472;
  --green: #22c55e;

  --bg: #050508;
  --bg2: #08090f;
  --surface: rgba(10, 12, 22, 0.92);
  --panel: rgba(10, 13, 24, 0.88);
  --panel2: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --line-blue: rgba(61, 138, 255, 0.22);

  --text: rgba(240, 245, 255, 0.96);
  --muted: rgba(168, 190, 230, 0.82);
  --muted2: rgba(192, 210, 240, 0.85);

  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 8px;
  --radius-pill: 999px;

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 2px 40px rgba(0, 0, 0, 0.5);

  --glow-blue: 0 0 28px rgba(61, 138, 255, 0.25);
  --glow-gold: 0 0 28px rgba(212, 168, 67, 0.22);
  --glow-red: 0 0 28px rgba(255, 29, 63, 0.22);

  --t: 0.22s ease;
  --t-slow: 0.45s ease;
  --t-spring: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; }

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.74;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding-bottom: 56px;
  display: grid;
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(5, 5, 8, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  gap: 14px;
  transition: background var(--t-slow), border-color var(--t-slow);
}

.site-nav.scrolled {
  background: rgba(5, 5, 8, 0.97);
  border-color: var(--line-blue);
}

.site-brand a {
  font-family: "Great Vibes", cursive;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-logo {
  height: 4rem;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.site-brand .red  { color: var(--red); }
.site-brand .blue { color: var(--blue-bright); }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--muted);
  transition: color var(--t), background var(--t), border-color var(--t);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-links a.nav-cta {
  background: linear-gradient(135deg, rgba(61, 138, 255, 0.28), rgba(61, 138, 255, 0.14));
  border-color: rgba(61, 138, 255, 0.45);
  color: #c8deff;
}

.nav-links a.nav-cta:hover {
  background: linear-gradient(135deg, rgba(61, 138, 255, 0.42), rgba(61, 138, 255, 0.26));
  border-color: rgba(95, 163, 255, 0.7);
  color: #ffffff;
  box-shadow: var(--glow-blue);
}

.nav-links a.active {
  color: #ffffff;
  background: rgba(61, 138, 255, 0.18);
  border-color: rgba(61, 138, 255, 0.55);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 9px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}

.menu-toggle[aria-expanded="true"],
.site-nav.nav-open .menu-toggle {
  background: rgba(61, 138, 255, 0.2);
  border-color: rgba(61, 138, 255, 0.5);
}

.hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://res.cloudinary.com/degkp7cvl/image/upload/v1773248897/Frontwebpage_yznzuu.jpg');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.08);
  transition: transform 12s ease;
  will-change: transform;
}

.hero-full.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg,
      rgba(5, 5, 8, 1)    0%,
      rgba(5, 5, 8, 0.78) 30%,
      rgba(5, 5, 8, 0.45) 58%,
      rgba(5, 5, 8, 0.22) 80%,
      rgba(5, 5, 8, 0.12) 100%),
    linear-gradient(125deg, rgba(255, 29, 63, 0.1) 0%, transparent 40%),
    linear-gradient(235deg, rgba(61, 138, 255, 0.08) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 95vw);
  text-align: center;
  padding: 100px 20px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(61, 138, 255, 0.45);
  background: rgba(61, 138, 255, 0.1);
  color: #a8ccff;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 18px;
  margin-bottom: 32px;
  opacity: 0;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(34, 197, 94, 0.7); }
  50%       { opacity: 0.7; transform: scale(0.8); box-shadow: 0 0 6px rgba(34, 197, 94, 0.4); }
}

.hero-title {
  margin: 0 0 22px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 8vw, 7rem);
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
}

.hero-title .t-red  { color: var(--red); }
.hero-title .t-blue { color: var(--blue-bright); }

.hero-sub {
  max-width: 58ch;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.72;
  color: var(--muted);
  opacity: 0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  opacity: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  border-radius: var(--radius-pill);
  padding: 9px 15px;
  font-size: 0.81rem;
  font-weight: 700;
  color: var(--muted2);
  backdrop-filter: blur(6px);
}

.hero-pill-icon {
  font-style: normal;
  font-size: 1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
}

.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.28);
  transform: rotate(45deg);
  animation: bounce-arrow 1.6s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

.page-loaded .hero-badge  { animation: fadeInDown 0.7s ease 0.15s forwards; }
.page-loaded .hero-title  { animation: fadeInUp 0.85s ease 0.35s forwards; }
.page-loaded .hero-sub    { animation: fadeInUp 0.85s ease 0.55s forwards; }
.page-loaded .hero-trust  { animation: fadeInUp 0.8s ease 0.7s forwards; }
.page-loaded .hero-ctas   { animation: fadeInUp 0.8s ease 0.85s forwards; }
.page-loaded .hero-scroll { animation: fadeIn 1s ease 1.3s forwards; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 24px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 26px 20px;
  text-align: center;
  transition: border-color var(--t-slow), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  opacity: 0;
  transition: opacity var(--t-slow);
}

.stat-card:hover {
  border-color: var(--line-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.stat-card:hover::before { opacity: 1; }

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-num.gold { color: var(--gold); }
.stat-num.red  { color: var(--red); }

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t), color var(--t);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn.primary {
  background: linear-gradient(135deg, rgba(61, 138, 255, 0.55), rgba(25, 90, 220, 0.4));
  border-color: rgba(61, 138, 255, 0.75);
  color: #ffffff;
}

.btn.primary:hover {
  background: linear-gradient(135deg, rgba(61, 138, 255, 0.78), rgba(25, 90, 220, 0.58));
  border-color: rgba(95, 163, 255, 0.92);
  box-shadow: 0 6px 28px rgba(61, 138, 255, 0.38), 0 0 0 1px rgba(61, 138, 255, 0.18) inset;
}

.btn.secondary {
  background: rgba(61, 138, 255, 0.09);
  border-color: rgba(61, 138, 255, 0.4);
  color: #b8d4ff;
}

.btn.secondary:hover {
  background: rgba(61, 138, 255, 0.18);
  border-color: rgba(95, 163, 255, 0.68);
  color: #ffffff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--muted2);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.btn.gold-btn {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.3), rgba(180, 138, 30, 0.18));
  border-color: rgba(212, 168, 67, 0.55);
  color: var(--gold-light);
}

.btn.gold-btn:hover {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.48), rgba(180, 138, 30, 0.32));
  border-color: rgba(232, 196, 114, 0.75);
  box-shadow: var(--glow-gold);
}

button.btn { font: inherit; cursor: pointer; }

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}

.hero-left {
  padding: 44px 40px;
  background: radial-gradient(ellipse at 0% 0%, rgba(255, 29, 63, 0.06) 0%, transparent 55%),
              radial-gradient(ellipse at 100% 100%, rgba(61, 138, 255, 0.06) 0%, transparent 55%);
}

.hero-right {
  padding: 30px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.coming,
.coming-badge {
  display: inline-block;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(61, 138, 255, 0.45);
  background: rgba(61, 138, 255, 0.1);
  color: #b5d2ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.coming { margin-bottom: 14px; }

.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.title {
  margin: 0.3rem 0 0.6rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.title .red  { color: var(--red); }
.title .blue { color: var(--blue); }

.subtitle,
.panel-text,
.section-head p,
.page-intro p,
.svc p,
.svc ul,
.micro-copy,
.form-note,
.steps,
.gallery-caption,
.lightbox-caption,
.field label,
.video-card p {
  color: var(--muted2);
}

.subtitle {
  margin: 0.2rem 0 0;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.76;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  padding: 8px 13px;
  font-size: 0.82rem;
  transition: background var(--t), border-color var(--t);
}

.info-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(61, 138, 255, 0.45);
  background: rgba(61, 138, 255, 0.1);
  color: #dce9ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 14px;
}

.panel-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.06em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.section,
main.section { margin-top: 0; }

.section-inner { padding: 36px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.section-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.section-head h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-head p {
  margin: 0;
  font-size: 0.92rem;
}

.page-intro {
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 0% 0%, rgba(255, 29, 63, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 100% 100%, rgba(61, 138, 255, 0.05) 0%, transparent 50%);
}

.page-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--blue));
  border-radius: 0 0 3px 3px;
}

.page-intro h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
}

.page-intro p {
  font-size: 1.05rem;
  line-height: 1.76;
  max-width: 72ch;
  margin: 0.65rem 0 0;
}

.page-intro .cta-row .btn { flex: 0 1 220px; }

.featured-image-section {
  overflow: hidden;
  padding: 0;
}

.featured-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}

.featured-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.9s ease;
}

.featured-img.img-loaded { opacity: 1; }

.fi-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, rgba(255, 29, 63, 0.06) 0%, rgba(5, 5, 8, 0.6) 40%, rgba(61, 138, 255, 0.06) 100%);
  border: 1.5px dashed rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  margin: 2px;
}

.fi-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.22);
  text-transform: uppercase;
}

.fi-sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.12);
}

.services {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.svc {
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
  padding: 24px 26px;
  transition: border-color var(--t-slow), background var(--t-slow), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.svc::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 138, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.svc:hover {
  border-color: rgba(61, 138, 255, 0.28);
  background: rgba(61, 138, 255, 0.035);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.32);
}

.svc:hover::after { opacity: 1; }
.svc.wide { grid-column: span 12; }

.svc h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  line-height: 1.28;
  color: #ffffff;
}

.svc h4 {
  margin: 18px 0 0;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.36);
}

.svc p  { margin: 0; line-height: 1.74; }
.svc ul { margin: 6px 0 0; padding-left: 20px; line-height: 1.82; }

.svc-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.compact-services .svc.wide { grid-column: span 12; }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
  padding: 30px 24px;
  text-align: center;
  transition: border-color var(--t-slow), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.why-card:hover {
  border-color: rgba(212, 168, 67, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
}

.why-card:hover::before { opacity: 1; }

.why-card-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.cta-band {
  padding: 56px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(61, 138, 255, 0.06) 0%,
    rgba(5, 5, 8, 0) 40%,
    rgba(255, 29, 63, 0.04) 100%);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 138, 255, 0.3), var(--red) 60%, transparent);
}

.cta-band h2 {
  margin: 0 0 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
}

.cta-band p {
  margin: 0 auto 32px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-band .cta-row { justify-content: center; margin-top: 0; }

.stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.two-col {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-col > .svc { grid-column: auto; }

.about-mid-cards {
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-facts ul { margin-top: 8px; line-height: 1.65; }

.service-note {
  margin: 0;
  border-left: 3px solid rgba(61, 138, 255, 0.55);
  background: rgba(61, 138, 255, 0.045);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  color: var(--muted);
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.vehicle-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.badge-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background var(--t), border-color var(--t);
}

.badge-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.filter-pills { margin-top: 2px; }
.filter-pill { cursor: pointer; color: var(--muted); transition: background var(--t), border-color var(--t), color var(--t); }

.filter-pill.is-active {
  border-color: rgba(61, 138, 255, 0.8);
  background: rgba(61, 138, 255, 0.24);
  color: #ffffff;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.services-grid .service-card {
  grid-column: auto;
  display: flex;
  flex-direction: column;
}

.service-quote-link { margin-top: auto; padding-top: 18px; width: fit-content; }
.service-card[hidden] { display: none !important; }
.services-grid .service-card.wide { grid-column: 1 / -1; }

.filter-empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--muted2);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.glance-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.95rem;
}

.glance-table th,
.glance-table td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.glance-table th {
  background: rgba(61, 138, 255, 0.08);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #a8caff;
}

.glance-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--t-slow), transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s ease;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.gallery-tile-overlay span {
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.28s ease;
}

.gallery-tile:hover { border-color: rgba(61, 138, 255, 0.4); transform: translateY(-4px); box-shadow: 0 18px 52px rgba(0, 0, 0, 0.5); }
.gallery-tile:hover .gallery-tile-overlay { background: rgba(5, 5, 8, 0.5); }
.gallery-tile:hover .gallery-tile-overlay span { opacity: 1; transform: scale(1); }
.gallery-tile:hover img { transform: scale(1.06); }

.gallery-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-caption {
  padding: 11px 14px;
  font-size: 0.87rem;
}

.gallery-pair {
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.gallery-pair-label {
  padding: 10px 14px 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.gallery-pair-images .gallery-tile {
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--line);
}

.gallery-pair-images .gallery-tile:first-child {
  border-right: 1px solid var(--line);
}

.gallery-ba-label {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.gallery-ba-label.before { color: rgba(255, 100, 100, 0.85); }
.gallery-ba-label.after  { color: rgba(80, 200, 120, 0.9); }

@media (max-width: 860px) {
  .gallery-pair { grid-column: span 2; }
}

@media (max-width: 640px) {
  .gallery-pair { grid-column: span 1; }
  .gallery-pair-images { grid-template-columns: 1fr; }
  .gallery-pair-images .gallery-tile:first-child { border-right: none; border-bottom: 1px solid var(--line); }
}

.gallery-tile.gallery-featured {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  aspect-ratio: 16 / 6;
}

.gallery-tile.gallery-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-featured-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 300;
  backdrop-filter: blur(6px);
}

.lightbox.open { display: flex; }

.lightbox-inner {
  width: 100%;
  max-width: 940px;
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #030409;
}

.lightbox-meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lightbox-caption { margin: 0; }

.lightbox-close {
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 10px 18px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background var(--t), border-color var(--t);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
  padding: 18px;
  transition: border-color var(--t-slow), background var(--t-slow);
}

.video-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 29, 63, 0.08), rgba(61, 138, 255, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.07em;
  margin: 10px 0;
}

.video-frame-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(255, 29, 63, 0.07), rgba(61, 138, 255, 0.11));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea,
.readonly-message {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 13px 14px;
  min-height: 50px;
  font: inherit;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(61, 138, 255, 0.65);
  background: rgba(61, 138, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(61, 138, 255, 0.1);
}

.field select option { background: #0d0f1c; color: var(--text); }

.field textarea,
.readonly-message { resize: vertical; min-height: 120px; line-height: 1.6; }

.readonly-message { min-height: 180px; font-size: 0.92rem; }

.form-note  { margin: 10px 0 0; font-size: 0.86rem; }

.form-status       { margin: 10px 0 0; font-size: 0.9rem; color: #ffa8b8; }
.form-status.ok    { color: #a8c8ff; }

.contact-actions           { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.contact-actions .btn      { min-width: 200px; }
.contact-email-row         { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 12px; }
.email-text                { margin: 0; font-weight: 700; font-size: 1.05rem; }
.confirmation-panel[hidden]{ display: none; }
.steps                     { margin: 10px 0 0; padding-left: 20px; line-height: 1.78; }

footer {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 15, 0.95);
  overflow: hidden;
}

.footer-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  padding: 40px 36px 28px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-name {
  font-family: "Great Vibes", cursive;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.footer-brand-name .red  { color: var(--red); }
.footer-brand-name .blue { color: var(--blue-bright); }

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  max-width: 34ch;
}

.footer-col-head {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color var(--t);
}

.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 36px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t);
}

.footer-links a:hover { color: var(--text); }

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(5, 5, 8, 0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .btn { min-height: 52px; }
.mobile-sticky-cta.is-hidden { display: none !important; }

.section-inner a:not(.btn):not(.badge-link),
.page-intro a:not(.btn):not(.badge-link),
.hero-left a:not(.btn):not(.badge-link),
.svc a:not(.btn) {
  text-underline-offset: 3px;
}

.section-inner a:not(.btn):not(.badge-link):hover,
.page-intro a:not(.btn):not(.badge-link):hover,
.svc a:not(.btn):hover,
footer a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.gallery-tile:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid rgba(95, 163, 255, 1);
  outline-offset: 3px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

@media (min-width: 980px) {
  .site-nav { flex-wrap: nowrap; }
  .nav-links { flex-wrap: nowrap; }
}

@media (max-width: 980px) {
  .services-grid  { grid-template-columns: 1fr; }
  .stats-strip    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-us-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-body    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .two-col, .about-mid-cards { grid-template-columns: 1fr; gap: 12px; }
  .gallery-grid, .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-image-frame { aspect-ratio: 16 / 6; border-radius: 18px; }
  .hero-full { min-height: 58vh; }
  .hero-bg { background-position: center 55%; }
}

@media (max-width: 860px) {
  .wrap { width: min(1100px, 94vw); gap: 14px; }
  .card, footer { border-radius: 18px; }
  .hero-left, .hero-right, .section-inner, .page-intro { padding: 26px; }
  .title { font-size: clamp(2.3rem, 10vw, 3.4rem); }
  .panel-title { font-size: 1.6rem; }
  .site-nav { padding: 10px 14px; }
  .site-brand a { font-size: 1.8rem; }
  .cta-row .btn, .page-intro .cta-row .btn { flex-basis: 100%; }
  .subtitle { max-width: 100%; font-size: 1rem; }
  .section-head h2 { font-size: clamp(1.4rem, 4vw, 1.7rem); }
  .footer-body { grid-template-columns: 1fr; gap: 22px; padding: 28px 24px 20px; }
  .footer-bottom { padding: 16px 24px; }
}

@media (max-width: 800px) {
  body, body.has-mobile-sticky-cta { padding-bottom: 96px; }
  body.mobile-sticky-cta-hidden { padding-bottom: 0; }
  .svc { grid-column: span 12; }
  .menu-toggle { display: inline-flex; }
  .site-nav { position: sticky; top: 0; z-index: 200; }
  .nav-links {
    display: none;
    width: 100%;
    order: 5;
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
  }
  .site-nav.nav-open .nav-links { display: flex; }
  .nav-links a { text-align: center; padding: 12px; }
  .nav-links a.nav-cta { order: -1; }
  .mobile-sticky-cta { display: grid; }
  .hero-full { min-height: 50vh; }
  .hero-bg { background-position: center 50%; }
  .why-us-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(1100px, 96vw); }
  .gallery-grid, .video-grid { grid-template-columns: 1fr; }
  .hero-left, .hero-right, .section-inner, .page-intro { padding: 22px; }
  .site-brand a { font-size: 1.6rem; }
  .coming, .coming-badge { font-size: 0.67rem; letter-spacing: 0.12em; }
  .kicker { font-size: 0.72rem; letter-spacing: 0.16em; }
  .section-head { margin-bottom: 14px; }
  .badge { font-size: 0.78rem; padding: 8px 11px; }
  .info-badge { font-size: 0.76rem; padding: 8px 11px; }
  .svc { padding: 18px 20px; }
  .video-thumb { font-size: 1.1rem; }
  .lightbox { padding: 12px; }
  .featured-image-frame { aspect-ratio: 16 / 8; border-radius: 14px; }
  .glance-table { font-size: 0.88rem; }
  .hero-full { min-height: 44vh; }
  .hero-content { padding: 40px 18px 36px; }
  .page-intro { padding: 36px 24px; }
  .stats-strip { gap: 10px; }
}

@media (max-width: 430px) {
  .title { font-size: clamp(2.1rem, 12vw, 3rem); }
  .page-intro h1 { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .section-head p { width: 100%; }
  .badges { gap: 8px; }
  .mobile-sticky-cta .btn { font-size: 0.9rem; min-height: 50px; }
  .hero-left { padding: 20px 18px; }
  .section-inner, .page-intro { padding: 18px; }
  .stat-num { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-title { font-size: clamp(2.6rem, 14vw, 4rem); }
}

@media (max-width: 800px) {

  
  .nav-links {
    background: rgba(5, 5, 8, 0.99);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: none;
    border-radius: 0 0 18px 18px;
    padding: 6px 10px 14px;
    gap: 4px;
    margin: 0 -14px; 
  }
  .nav-links a {
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: background 0.15s, color 0.15s;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(61, 138, 255, 0.1);
    color: #fff;
  }
  .nav-links a.nav-cta {
    background: linear-gradient(135deg, rgba(61, 138, 255, 0.5), rgba(25, 90, 220, 0.4));
    border: 1px solid rgba(61, 138, 255, 0.65);
    color: #fff;
    margin-bottom: 4px;
  }

  
  .hero-full { min-height: 100svh; }
  .hero-overlay {
    background:
      linear-gradient(0deg,
        rgba(5, 5, 8, 1)    0%,
        rgba(5, 5, 8, 0.88) 35%,
        rgba(5, 5, 8, 0.55) 65%,
        rgba(5, 5, 8, 0.2)  100%);
  }
  .hero-content {
    padding: 80px 20px 40px;
    justify-content: flex-end;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(2.6rem, 13vw, 4.5rem);
    white-space: normal;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 0.97rem;
    line-height: 1.65;
    margin-bottom: 24px;
    color: rgba(200, 215, 240, 0.85);
  }
  .hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 340px;
  }
  .hero-cta-row .btn {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
  }
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 0;
  }
  .hero-pill {
    font-size: 0.72rem;
    padding: 7px 12px;
  }

  
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .stat-card { padding: 20px 16px; }
  .stat-num  { font-size: clamp(2rem, 9vw, 2.8rem); }
  .stat-label { font-size: 0.72rem; }

  
  .svc {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 14px;
    align-items: start;
    padding: 16px 18px;
  }
  .svc-icon {
    font-size: 1.6rem;
    line-height: 1;
    grid-row: span 3;
    padding-top: 2px;
  }
  .svc h3 {
    font-size: 0.97rem;
    margin: 0 0 4px;
    line-height: 1.2;
  }
  .svc p {
    font-size: 0.83rem;
    line-height: 1.5;
    margin: 0 0 10px;
    color: rgba(168, 190, 230, 0.7);
  }
  .svc .btn {
    font-size: 0.8rem;
    min-height: 36px;
    padding: 8px 14px;
    width: fit-content;
  }

  
  .section-head { margin-bottom: 18px; }
  .section-head h2 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .section-head p { font-size: 0.88rem; }

  
  .why-us-grid { grid-template-columns: 1fr; gap: 10px; }

  
  .mobile-sticky-cta {
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    background: rgba(3, 3, 6, 0.98);
    border-top: 1px solid rgba(61, 138, 255, 0.2);
  }
  .mobile-sticky-cta .btn.primary {
    background: linear-gradient(135deg, rgba(61, 138, 255, 0.7), rgba(25, 90, 220, 0.55));
    border-color: rgba(61, 138, 255, 0.8);
    box-shadow: 0 4px 20px rgba(61, 138, 255, 0.3);
  }

  
  .footer-body { padding: 24px 18px 16px; }
  .footer-bottom { padding: 14px 18px; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-links { justify-content: center; gap: 14px; }
}

@media (max-width: 390px) {
  .hero-title { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-cta-row .btn { min-height: 50px; font-size: 0.92rem; }
  .stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .stat-card { padding: 16px 12px; }
}

/* ── City Slicker Picker ── */
.csp-link {
  color: #a8caff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.csp-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.csp-link-plain {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(168,190,230,0.85);
}
.csp-tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(96,165,250,0.12);
  color: rgba(168,190,230,0.7);
  border: 1px solid rgba(96,165,250,0.2);
  vertical-align: middle;
}
.csp-list li {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: background 0.15s;
}
.csp-list li:hover { background: rgba(255,255,255,0.06); }

@media (max-width: 700px) {
  .csp-grid { grid-template-columns: 1fr !important; }
}

/* ── Notice / announcement banner ── */
.cnw-notice-banner {
  background: linear-gradient(135deg, rgba(255,29,63,0.12), rgba(61,138,255,0.10));
  border: 2px solid rgba(255,29,63,0.35);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
}
@media (max-width: 640px) {
  .cnw-notice-banner { padding: 20px 16px; border-radius: 12px; }
}

/* ── Owner video wrapper ── */
.owner-video-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #000;
  overflow: hidden;
}
.owner-video-wrap video {
  display: block;
  width: 100%;
  max-height: 72vh;
}

/* ── Fix .svc.wide on mobile: no icon so reset the icon-grid layout ── */
@media (max-width: 800px) {
  .svc.wide {
    display: block;
    padding: 16px 18px;
  }
}

/* ── Site-wide mobile polish ── */
@media (max-width: 800px) {
  /* Logo slightly smaller so nav stays compact */
  .site-logo { height: 3.2rem; }

  /* Gallery featured image: slightly shorter on phones */
  .gallery-tile.gallery-featured { aspect-ratio: 16 / 7; }

  /* Featured label bigger tap target on mobile */
  .gallery-featured-label { font-size: 0.92rem; padding: 13px 14px; }

  /* Pricing note banners: tighter on mobile */
  .pricing-note { padding: 12px 14px !important; font-size: 0.83rem !important; }
}

@media (max-width: 480px) {
  /* Stats strip: always 2 columns, never overflow */
  .stats-strip { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }

  /* CTA band: smaller padding */
  .cta-band { padding: 32px 18px; }
  .cta-band h2 { font-size: clamp(1.9rem, 8vw, 2.4rem); }

  /* Section head text wraps cleanly */
  .section-head { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* Section inner: tighter padding on small phones */
  .section-inner, .page-intro { padding: 18px 16px; }

  /* Service cards: tighter on small phones */
  .svc { padding: 14px 14px 14px 12px; }

  /* Two-col stack gap */
  .two-col { gap: 10px; }

  /* Gallery grid: 2 columns on small phones */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* Card border-radius: slightly tighter */
  .card { border-radius: 16px; }

  /* CTA row buttons: full width on very small screens */
  .cta-row { gap: 8px; }
  .cta-row .btn { min-height: 48px; }

  /* Footer brand name: smaller on tiny phones */
  .footer-brand-name { font-size: 1.75rem; }
}

@media (max-width: 380px) {
  /* Very small phones: reduce section padding further */
  .section-inner, .page-intro { padding: 16px 12px; }
  .hero-left, .hero-right { padding: 18px 14px; }
  .site-logo { height: 2.8rem; }
  .nav-cta { display: none; }
}

