/* ============================================
   VELCITI — main.css FINAL
   Homepage styles — Vaagn pattern
   ============================================ */

/* ── SHARED ── */
.section { padding: var(--section-pad) var(--gutter); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.s-eyebrow { font-family: var(--F); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.s-title { font-family: var(--F); font-size: clamp(26px,3.2vw,38px); font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: -.5px; }
.s-sub { font-family: var(--FB); font-size: 14px; color: var(--muted); margin-bottom: 36px; max-width: 460px; }
.s-title--light { color: #fff; }
.s-sub--light { color: rgba(255,255,255,.6); }

/* ── BUTTONS ── */
.btn-call { font-family: var(--F); font-size: 13px; font-weight: 600; padding: 13px 26px; background: var(--white); color: var(--navy); border: none; border-radius: 50px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: background .2s, transform .2s; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.btn-call:hover { background: #f0f0f0; transform: translateY(-1px); }
.btn-quote { font-family: var(--F); font-size: 13px; font-weight: 600; padding: 13px 26px; background: var(--navy); color: #fff; border: none; border-radius: 50px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: background .2s, transform .2s; }
.btn-quote:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline-pill { font-family: var(--F); font-size: 13px; font-weight: 600; padding: 13px 26px; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); border-radius: 50px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: border-color .2s, background .2s; }
.btn-outline-pill:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-navy { font-family: var(--F); font-size: 12px; font-weight: 600; letter-spacing: .5px; padding: 11px 22px; border-radius: 4px; border: 1.5px solid var(--navy); background: transparent; color: var(--navy); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: background .2s, color .2s; }
.btn-navy:hover { background: var(--navy); color: #fff; }
.btn-navy-filled { font-family: var(--F); font-size: 12px; font-weight: 600; padding: 11px 22px; border-radius: 4px; background: var(--navy); color: #fff; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: background .2s; }
.btn-navy-filled:hover { background: var(--blue); }


/* ══════════════════════════════════════════
   HERO — Vaagn fullscreen slider
   ══════════════════════════════════════════ */
.hero-wrap {
  position: relative; overflow: hidden;
  margin-top: 0;
}

.hero-slide {
  display: none; position: relative;
  min-height: 100vh; overflow: hidden;
}
.hero-slide.active { display: flex; flex-direction: column; }

/* Background image fills entire slide */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.hero-slide[data-slide="0"] .hero-bg img {
  object-position: center center;
}

.hero-slide[data-slide="1"] .hero-bg img {
  object-position: center center;
}

.hero-slide[data-slide="2"] .hero-bg img {
  object-position: 55% center ;
}

.hero-slide[data-slide="3"] .hero-bg img {
  object-position: left center;
}

.hero-slide[data-slide="4"] .hero-bg img {
  object-position: 70% center ;
}

.hero-slide[data-slide="5"] .hero-bg img {
  object-position:  70% center;
}

/* Dark overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(12,12,14,0.80) 0%, rgba(28,49,114,0.45) 100%);
}

/* Content overlaid on image */
.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  width: 100%; min-height: 100vh;
  justify-content: flex-end; align-items: flex-start;
  padding: 0 clamp(24px,6vw,80px) 120px;
}

.hero-eyebrow {
  font-family: var(--F); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 10px;
}

.hero-name {
  font-family: var(--F); font-size: clamp(40px,5.5vw,72px);
  font-weight: 700; line-height: 1.05; color: #fff; margin-bottom: 10px;
  letter-spacing: -2px;
}

.hero-accent { color: var(--gold); }

.hero-tagline {
  font-family: var(--FB); font-size: 15px;
  color: rgba(255,255,255,.8); margin-bottom: 24px;
  line-height: 1.5; max-width: 480px;
}

/* Specs row — glass card — Vaagn style */
.hero-specs-row {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 28px;
  background: rgba(255,255,255,.15); border-radius: 10px;
  overflow: hidden; backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
}

.hero-spec-item {
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-spec-item:last-child { border-right: none; }

.hero-spec-label {
  font-family: var(--F); font-size: 8px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.6); display: block; margin-bottom: 3px;
}

.hero-spec-val {
  font-family: var(--F); font-size: 18px; font-weight: 600; color: #fff;
}
.hero-spec-val sup { font-size: 10px; }

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}

/* Slider controls */
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,.85); border: 1px solid rgba(0,0,0,.1);
  border-radius: 50%; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  transition: background .2s; user-select: none; border: none;
}
.slide-arrow:hover { background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.15); }
.arrow-prev { left: 16px; }
.arrow-next { right: 16px; }

.slide-dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.s-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer;
  transition: background .3s, transform .3s; border: none;
}
.s-dot.active { background: var(--gold); transform: scale(1.4); }

.slide-counter {
  position: absolute; bottom: 26px; right: 48px;
  font-family: var(--F); font-size: 10px; font-weight: 500;
  letter-spacing: 2px; color: rgba(255,255,255,.4); z-index: 10;
}

@media (max-width: 768px) {
  .hero-content { padding: 0 20px 80px; }
  .hero-name { font-size: 32px; letter-spacing: -1px; }
  .hero-tagline { font-size: 13px; }
  .hero-spec-item { padding: 10px 16px; }
  .hero-spec-val { font-size: 15px; }
  .btn-call, .btn-quote { padding: 11px 20px; font-size: 12px; }
}


/* ══════════════════════════════════════════
   TICKER BAND — Vaagn style
   Dark strip with scrolling facts
   ══════════════════════════════════════════ */
.ticker-band {
  background: var(--navy); color: #fff;
  padding: 10px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-family: var(--F); font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0 22px; color: rgba(255,255,255,.7);
}
.ticker-item::after { content: '·'; margin-left: 22px; color: var(--gold); }
@media (prefers-reduced-motion: reduce) { .ticker-inner { animation: none; } }


/* ══════════════════════════════════════════
   SERVICES GRID — Vaagn vehicles grid
   ══════════════════════════════════════════ */
#services { background: var(--white); padding: var(--section-pad) var(--gutter); }
.services-section-inner { max-width: var(--max-width); margin: 0 auto; }

.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 36px;
  flex-wrap: wrap; gap: 16px;
}

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.service-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s;
  border: 1px solid rgba(10,22,40,.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-img { height: 180px; overflow: hidden; background: var(--cream); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }

.service-card-body { padding: 16px 16px 6px; flex: 1; }
.service-name { font-family: var(--F); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.2; }
.service-desc { font-family: var(--FB); font-size: 12px; color: var(--muted); line-height: 1.6; }

.service-card-actions {
  display: flex; border-top: 1px solid #f0f0f0; margin-top: 12px;
}
.service-btn-q {
  flex: 1; padding: 11px 8px; font-family: var(--F); font-size: 11px; font-weight: 700;
  text-align: center; cursor: pointer; background: none; border: none;
  color: var(--navy); border-right: 1px solid #f0f0f0;
  transition: background .18s, color .18s;
}
.service-btn-q:hover { background: var(--navy); color: #fff; }
.service-btn-e {
  flex: 1; padding: 11px 8px; font-family: var(--F); font-size: 11px; font-weight: 600;
  text-align: center; color: var(--gold); text-decoration: none;
  display: block; transition: background .18s, color .18s;
}
.service-btn-e:hover { background: var(--gold); color: #fff; }

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .service-card-img { height: 140px; } }
@media (max-width: 400px) { .services-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════
   PROJECTS SLIDER — Vaagn community slider
   ══════════════════════════════════════════ */
.projects-section { padding: var(--section-pad) var(--gutter); background: var(--cream); }
.projects-section-inner { max-width: var(--max-width); margin: 0 auto; }

.projects-slider-wrap {
  position: relative; display: flex;
  align-items: center; gap: 12px; margin-top: 16px;
}
.cs-track-wrap { overflow: hidden; flex: 1; border-radius: 8px; }
.cs-track {
  display: flex; gap: 8px;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.project-card {
  position: relative; border-radius: 12px; overflow: hidden;
  width: calc(33.333% - 6px); height: 280px;
  flex-shrink: 0; cursor: pointer;
}
.project-card:hover .project-img { transform: scale(1.05); }
.project-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px;
}
.project-type {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px;
}
.project-name {
  font-family: var(--F); font-size: 15px; font-weight: 600;
  color: #fff; margin-bottom: 3px; line-height: 1.3;
}
.project-location { font-size: 12px; color: rgba(255,255,255,.5); }

/* Arrow buttons — Vaagn gold circles */
.cs-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none;
  font-size: 1.8rem; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cs-arrow:hover { background: var(--gold); color: var(--navy); }

@media (max-width: 860px) {
  .project-card { width: calc(50% - 4px); height: 220px; }
  .cs-arrow { display: none; }
}
@media (max-width: 480px) {
  .project-card { width: 92vw; height: 240px; }
}


/* ══════════════════════════════════════════
   ABOUT BAND — Vaagn about-band
   Dark navy, text left, stats right
   ══════════════════════════════════════════ */
.about-band {
  background: #0a1628;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.about-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(26,62,212,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.about-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ab-eyebrow {
  font-family: var(--F);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #C9A84C;
  flex-shrink: 0;
}

.ab-title {
  font-family: var(--F);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.ab-body {
  font-family: var(--FB);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  max-width: 420px;
}

.ab-quote {
  border-left: 2px solid #C9A84C;
  padding: 4px 0 4px 16px;
  margin-bottom: 28px;
  font-family: var(--F);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.ab-cta {
  font-family: var(--F);
  font-size: 12px;
  font-weight: 600;
  padding: 11px 22px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}

.ab-cta:hover {
  background: #1a3ed4;
  border-color: #1a3ed4;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: 14px;
  overflow: hidden;
}

.stat-box {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  opacity: 1 !important;
  transform: none !important;
}

.stat-box:hover {
  background: rgba(255,255,255,0.08);
}

.stat-num {
  font-family: var(--F);
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--F);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.stat-box:hover .stat-label {
  color: rgba(255,255,255,0.6);
}

.stat-box-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A84C, rgba(201,168,76,0.1));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.stat-box:hover .stat-box-accent {
  transform: scaleX(1);
}

@media (max-width: 860px) {
  .about-band { padding: 40px 20px; }
  .about-band-inner { grid-template-columns: 1fr; gap: 32px; }
}


/* ══════════════════════════════════════════
   CLIENTS — Logo strip
   ══════════════════════════════════════════ */
.clients-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-label {
  text-align: center; font-family: var(--F); font-size: 10px;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; display: block;
  padding: 0 var(--gutter);
}
.clients-track-wrapper { overflow: hidden; position: relative; }
.clients-track-wrapper::before, .clients-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.clients-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.clients-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.clients-track {
  display: flex; align-items: center; gap: 48px;
  width: max-content; animation: marquee 30s linear infinite;
}
.clients-strip-img { height: 72px; width: auto; object-fit: contain; flex-shrink: 0; }
.clients-track-wrapper:hover .clients-track { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }
@media (prefers-reduced-motion: reduce) { .clients-track { animation: none; } .ticker-inner { animation: none; } }


/* ══════════════════════════════════════════
   OFFICES — Vaagn districts pattern
   ══════════════════════════════════════════ */
.offices-section { padding: var(--section-pad) var(--gutter); background: var(--white); }
.offices-section-inner { max-width: var(--max-width); margin: 0 auto; }

.offices-header {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: start; margin-bottom: 36px; gap: 32px;
}
.offices-headline {
  font-family: var(--F); font-size: clamp(28px,3.2vw,42px);
  font-weight: 700; color: var(--navy); line-height: 1.1;
}
.offices-headline span { color: var(--gold); }
.offices-right p {
  font-family: var(--FB); font-size: 14px; line-height: 1.65;
  color: var(--muted); margin-bottom: 12px;
}
.offices-right a {
  font-family: var(--F); font-size: 12px; font-weight: 600;
  color: var(--navy); display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.offices-right a:hover { gap: 10px; }

.offices-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.office-card {
  border-radius: 12px; overflow: hidden; position: relative;
  height: 200px; cursor: pointer;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  box-shadow: var(--shadow-card); transition: box-shadow .3s;
}
.office-card:hover { box-shadow: var(--shadow-hover); }
.office-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  z-index: 1;
}
.office-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.office-card:hover img { transform: scale(1.08); }

.office-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 16px 20px;
}
.office-name {
  font-family: var(--F); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.office-address { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.4; margin-bottom: 8px; }
.office-links { display: flex; flex-direction: column; gap: 2px; }
.office-links a {
  font-size: 12px; color: rgba(255,255,255,.7);
  transition: color .2s;
}
.office-links a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .offices-grid { grid-template-columns: 1fr; }
  .offices-header { grid-template-columns: 1fr; gap: 14px; }
}


/* ══════════════════════════════════════════
   CONTACT — Vaagn dealer cards
   ══════════════════════════════════════════ */
.contact-section {
  padding: 64px 48px;
  background: #f4f5f7;
}

.contact-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.contact-card:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  border-color: #bbb;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #e8edff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.contact-icon--wa   { background: #dcf8e5; }
.contact-icon--mail { background: rgba(201,168,76,0.12); }
.contact-icon--quote { background: #e8edff; }

.contact-card h3 {
  font-family: var(--F);
  font-size: 19px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #6b6b6b;
  margin-bottom: 14px;
}

.contact-card-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.contact-card-links a {
  font-family: var(--F);
  font-size: 12px;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card-links a:hover { color: #1C3172; }

.contact-cta {
  font-family: var(--F);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 18px;
  border-radius: 4px;
  border: 1.5px solid #0a1628;
  background: transparent;
  color: #0a1628;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  margin-top: 16px;
  text-align: center;
}

.contact-cta:hover {
  background: #0a1628;
  color: #fff;
}

.contact-cta.primary {
  background: #0a1628;
  color: #fff;
  border-color: #0a1628;
}

.contact-cta.primary:hover {
  background: #1a3ed4;
  border-color: #1a3ed4;
}

@media (max-width: 900px) {
  .contact-section { padding: 40px 16px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .contact-cards { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS — Homepage sections
   Added for: 1920 / 1440 / 1280 / 1024 / 768 / 390 / 375
   These supplement the media queries above —
   nothing above is removed or overridden except
   where a smaller breakpoint intentionally wins.
   ══════════════════════════════════════════ */

/* ── 1920px+ — Large Desktop ── */
@media (min-width: 1920px) {
  .section-inner,
  .services-section-inner,
  .projects-section-inner,
  .offices-section-inner,
  .contact-section-inner,
  .about-band-inner { max-width: 1400px; }

  .hero-slide { min-height: 600px; }
  .hero-name { font-size: clamp(48px, 4.2vw, 84px); }
  .s-title { font-size: clamp(30px, 2.6vw, 42px); }
  .offices-headline { font-size: clamp(30px, 2.6vw, 46px); }

  .services-grid { gap: 32px; }
  .offices-grid { gap: 24px; }
  .contact-cards { gap: 24px; }
  .stats-grid { gap: 6px; }
}

/* ── 1440px — Desktop (baseline reinforcement) ── */
@media (min-width: 1440px) and (max-width: 1919px) {
  .section-inner,
  .services-section-inner,
  .projects-section-inner,
  .offices-section-inner,
  .contact-section-inner,
  .about-band-inner { max-width: 1200px; }

  .services-grid { gap: 24px; }
}

/* ── 1280px — Laptop ── */
@media (max-width: 1280px) {
  .section-inner,
  .services-section-inner,
  .projects-section-inner,
  .offices-section-inner,
  .contact-section-inner { max-width: 1100px; }

  .section,
  #services,
  .contact-section,
  .offices-section,
  .projects-section,
  .about-band { padding-left: 40px; padding-right: 40px; }

  .hero-name { font-size: clamp(36px, 4.6vw, 64px); }
}

/* ── 1024px — Tablet Landscape ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .about-band-inner { grid-template-columns: 1fr; gap: 32px; }

  .section,
  #services,
  .contact-section,
  .offices-section,
  .projects-section,
  .about-band { padding-left: 32px; padding-right: 32px; }

  .hero-name { font-size: clamp(32px, 4.2vw, 56px); }
}

/* ── 768px — Tablet Portrait ── */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .contact-cards { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .section,
  #services,
  .contact-section,
  .offices-section,
  .projects-section,
  .about-band { padding-left: 24px; padding-right: 24px; }

  .hero-name { font-size: clamp(28px, 8vw, 44px); }
  .hero-specs-row { flex-wrap: wrap; }
  .hero-spec-item { width: 50%; border-right: none; }
  .service-desc,
  .contact-card p,
  .offices-right p,
  .projects-banner-sub { font-size: 14px; line-height: 1.6; }

  .slide-arrow { width: 44px; height: 44px; }
}

/* ── 390px / 375px — Mobile ── */
@media (max-width: 390px) {
  .services-grid,
  .contact-cards,
  .offices-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  .section,
  #services,
  .contact-section,
  .offices-section,
  .projects-section,
  .about-band { padding-left: 16px; padding-right: 16px; }

  .hero-content { padding: 0 16px 80px; }
  .hero-name { font-size: 32px; line-height: 1.2; }
  .hero-tagline { font-size: 14px; line-height: 1.6; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-call, .btn-quote, .btn-outline-pill,
  .contact-cta, .projects-banner-btn,
  .offices-right a { width: 100%; justify-content: center; text-align: center; }

  .btn-call, .btn-quote, .btn-outline-pill { padding: 14px 20px; min-height: 44px; }

  .service-card-img { height: 150px; }
  .slide-counter { display: none; }
}