/* ============================================================
   GRAND TINO SERVICES — style.css
   Palette: #0a0a0a (void black) · #111318 (graphite) · #1a1e26 (deep steel)
   · #C8102E (GTS red) · #e8e8e8 (chrome) · #ffffff
   Typography: system-ui stack — cinematic, bold, legible
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --dark:    #111318;
  --steel:   #1a1e26;
  --red:     #C8102E;
  --red-dim: #8a0b1f;
  --red-glow: rgba(200, 16, 46, 0.35);
  --chrome:  #d4d4d4;
  --white:   #ffffff;
  --muted:   #888;
  --radius:  6px;
  --nav-h:   72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--black);
  color: var(--chrome);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
svg { display: inline-block; flex-shrink: 0; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; color: var(--white); }
h1 { font-size: clamp(3.2rem, 8vw, 7rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
em { font-style: normal; color: var(--red); }
p { color: #aaa; font-size: 1rem; }
strong { color: var(--chrome); font-weight: 700; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-top: 8px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 24px var(--red-glow);
}
.btn-primary:hover {
  background: #e01030;
  box-shadow: 0 0 40px rgba(200,16,46,0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--chrome);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 0 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}
.btn-whatsapp svg { width: 20px; height: 20px; }

.pulse {
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 24px var(--red-glow); }
  50%       { box-shadow: 0 0 48px rgba(200,16,46,0.6), 0 0 80px rgba(200,16,46,0.2); }
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── FLOATING PHONE ── */
.float-phone {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 24px var(--red-glow);
  animation: pulse 2.4s infinite;
  transition: var(--transition);
}
.float-phone svg { width: 18px; height: 18px; }
.float-phone:hover { background: #e01030; transform: scale(1.04); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: 1260px;
  margin: 0 auto;
}
.nav-logo img { height: 52px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 0 16px var(--red-glow);
}
.nav-cta:hover { background: #e01030 !important; }

.nav-phone-inline { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img { object-position: center center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(10,10,10,0.7) 50%, rgba(200,16,46,0.08) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.hero-eyebrow .line { display: block; width: 40px; height: 1px; background: var(--red); }

.hero-title-top, .hero-title-mid, .hero-title-bot {
  display: block;
  color: var(--white);
  text-shadow: 0 0 80px rgba(200,16,46,0.2);
}
.hero-title-mid {
  color: var(--red);
  text-shadow: 0 0 60px rgba(200,16,46,0.5);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 24px auto 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollHint 1.8s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0; transform: scaleY(0.5) translateY(-8px); }
  50%       { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
}
.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--chrome);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }

/* ── COUNTERS ── */
.counters-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--dark), var(--black));
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.counter-item {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.counter-item:last-child { border-right: none; }
.counter-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.counter-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
}
.counter-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--black);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-stack { position: relative; height: 520px; }
.about-img-main {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  object-fit: cover;
  filter: brightness(0.9);
}
.about-img-secondary {
  position: absolute;
  width: 55%;
  height: 45%;
  bottom: -28px;
  right: -28px;
  border-radius: 8px;
  object-fit: cover;
  border: 3px solid var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 32px var(--red-glow);
  z-index: 10;
}
.badge-num { display: block; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.badge-label { display: block; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; }

.about-text h2 { margin: 8px 0 24px; }
.about-text p { margin-bottom: 16px; }
.about-highlights { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.ah-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--chrome);
}
.ah-item svg { width: 18px; height: 18px; color: var(--red); margin-top: 2px; flex-shrink: 0; }

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 36px 28px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: rgba(200,16,46,0.4);
  transform: translateY(-4px);
}
.service-card:hover .sc-glow { opacity: 1; }
.sc-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.sc-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sc-icon svg { width: 24px; height: 24px; color: var(--red); }
.service-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.05rem; }
.service-card p { font-size: 0.88rem; color: #888; line-height: 1.7; }

.services-cta {
  text-align: center;
  margin-top: 60px;
}

/* ── WHY CHOOSE US ── */
.why {
  padding: 120px 0;
  background: var(--black);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.why-visual {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  height: 560px;
}
.why-visual img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.why-visual-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--steel);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--chrome);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.why-visual-badge svg { width: 24px; height: 24px; color: var(--red); }

.why-content h2 { margin: 8px 0 40px; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.wi-num {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--red);
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 28px;
}
.wi-text strong { display: block; font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.wi-text p { font-size: 0.88rem; color: #888; margin: 0; }

/* ── GALLERY ── */
.gallery {
  padding: 120px 0;
  background: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item.gi-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.8);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}
.gi-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gi-label { opacity: 1; transform: translateY(0); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 0;
  background: var(--black);
}
.testi-track-outer { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(200,16,46,0.15);
  font-family: Georgia, serif;
  font-weight: 900;
}
.tc-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--chrome);
  margin-bottom: 24px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.tc-author span { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testi-controls button {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testi-controls button:hover { background: var(--red); border-color: var(--red); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.testi-dots .dot.active { background: var(--red); transform: scale(1.3); }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(10,10,10,0.85) 100%);
}
.cta-banner-inner {
  position: relative; z-index: 10;
  text-align: center;
}
.cta-banner-inner h2 { margin-bottom: 16px; }
.cta-banner-inner p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin: 8px 0 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.cd-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cd-item svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.cd-item div { display: flex; flex-direction: column; gap: 4px; }
.cd-item strong { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.cd-item span, .cd-item a { font-size: 0.95rem; color: var(--chrome); }
.cd-item a:hover { color: var(--red); }
.contact-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.contact-map {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 460px;
  border: 1px solid rgba(255,255,255,0.07);
}
.contact-map iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg) brightness(0.7) contrast(1.1);
}
.map-overlay-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-overlay-card img { width: 40px; height: 40px; object-fit: contain; border-radius: 4px; }
.map-overlay-card div { display: flex; flex-direction: column; }
.map-overlay-card strong { font-size: 0.85rem; color: var(--white); }
.map-overlay-card span { font-size: 0.72rem; color: var(--muted); }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 56px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-contact a, .footer-contact span {
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-contact a { color: var(--chrome); font-weight: 600; }
.footer-contact a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-img-stack { height: 360px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { height: 380px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-large { grid-column: span 2; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(2) { border-right: none; }
  .testi-card { flex: 0 0 calc(50% - 12px); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 0.9rem; width: 100%; }
  .nav-toggle { display: flex; }
  .nav-phone-inline {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--chrome);
  }
  .nav-phone-inline a { color: var(--chrome); }

  .trust-item { padding: 12px 16px; font-size: 0.78rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .trust-item:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gi-large { grid-column: span 2; }
  .testi-card { flex: 0 0 calc(100% - 0px); }
  .footer-inner { grid-template-columns: 1fr; }

  .float-phone span { display: none; }
  .float-phone { padding: 14px; border-radius: 50%; }

  .about-img-secondary { display: none; }
  .why-visual-badge { right: 8px; bottom: -16px; font-size: 0.78rem; }

  h1 { font-size: 3rem; }
}

@media (max-width: 480px) {
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gi-large { grid-column: span 1; }
  .hero-btns { flex-direction: column; align-items: center; }
}
