/* 2 Hermanos — design tokens + base styles */

:root {
  /* Brand */
  --yellow: #FFCD05;
  --yellow-hover: #F5C200;
  --dark: #1B1A1E;
  --dark-alt: #2C2C2A;

  /* Surfaces */
  --white: #FFFFFF;
  --cream: #F8F7F3;
  --border-light: #E8E6E0;
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Text */
  --text-dark: #1B1A1E;
  --text-muted: #666666;
  --text-dim: #888888;
  --text-on-dark: #C5C3BC;
  --text-on-dark-strong: #FFFFFF;

  /* Type — Path B free substitutes */
  --font-display: 'Anton', 'Bebas Neue', 'Oswald', system-ui, sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing rhythm */
  --section-y: clamp(64px, 8vw, 120px);
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Type scale */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.eyebrow.on-dark { color: var(--yellow); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(44px, 6.5vw, 72px);
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(32px, 4.2vw, 52px);
}

h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section-y) 0;
}

.section-dark { background: var(--dark); color: var(--text-on-dark); }
.section-cream { background: var(--cream); }
.section-yellow { background: var(--yellow); color: var(--dark); }
.section-white { background: var(--white); }

/* Accent line */
.accent-line {
  width: 40px;
  height: 3px;
  background: var(--yellow);
  margin: 0 auto 20px;
}
.accent-line.left { margin-left: 0; }

/* Section header centered */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.section-head h2 { max-width: 720px; margin: 0 auto; }
.section-head p { max-width: 580px; margin: 18px auto 0; color: var(--text-muted); }
.section-dark .section-head p { color: var(--text-on-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .ti { font-size: 18px; }

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-primary:hover { background: var(--yellow-hover); border-color: var(--yellow-hover); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: #000; }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-lg { padding: 18px 28px; font-size: 15px; }

.btn-block { width: 100%; justify-content: center; }

/* Tabler icons — let the webfont own .ti; we just nudge alignment */
.ti { vertical-align: -0.125em; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: padding 0.2s ease;
}
.site-header.scrolled { padding: 0; }
.site-header.scrolled .header-inner { height: 60px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.2s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.site-header.scrolled .logo img { height: 40px; }
.footer-brand .logo img { height: 72px; }
.mobile-drawer .logo img { height: 56px; }

.nav-main {
  display: flex;
  gap: 32px;
}
.nav-main a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}
.nav-main a:hover { color: var(--dark); }
.nav-main a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-main a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.lang-switch button.active { color: var(--dark); }
.lang-switch .sep { padding: 4px 0; opacity: 0.4; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 100;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  color: var(--text-on-dark-strong);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.mobile-drawer .mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer .mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.mobile-drawer-foot { margin-top: auto; padding-top: 24px; }

/* Hero */
.hero {
  text-align: center;
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero-bar {
  width: 56px;
  height: 4px;
  background: var(--yellow);
  margin: 0 auto 28px;
}
.hero h1 {
  color: var(--white);
  max-width: 16ch;
  margin: 14px auto 18px;
  margin: 18px auto 24px;
}
.hero h1 .accent { color: var(--yellow); }
.hero-sub {
  max-width: 540px;
  margin: 0 auto 24px;
  color: var(--text-on-dark);
  font-size: 17px;
  line-height: 1.55;
}
.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 32px;
  padding: 8px 16px 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.lang-badge-label {
  color: rgba(245,243,238,0.72);
  font-weight: 500;
  white-space: nowrap;
}
.lang-badge-flags {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.lang-badge .flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-weight: 700;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.lang-badge .flag svg {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  display: block;
}
.lang-badge .flag em { font-style: normal; }

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

/* faint hero pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,205,5,0.04), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,205,5,0.03), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

/* Trust strip */
.trust-strip {
  background: var(--yellow);
  color: var(--dark);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item .ti {
  font-size: 32px;
  flex-shrink: 0;
  stroke-width: 1.4;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.01em;
}
.trust-cap {
  font-size: 12px;
  color: rgba(27,26,30,0.7);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Brand strip */
.brand-strip {
  padding: 56px 0;
  border-bottom: 1px solid var(--border-light);
}
.brand-strip .eyebrow { display: block; text-align: center; color: var(--text-dim); margin-bottom: 28px; }
.brand-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 40px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  opacity: 0.55;
}
.brand-list span.more { font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.05em; color: var(--text-muted); opacity: 1; }

/* Service cards grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 22px 22px 24px;
  border-radius: 6px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  box-shadow: 0 6px 24px rgba(27,26,30,0.06);
}
.service-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: var(--dark);
  margin-bottom: 6px;
}
.service-icon .ti { font-size: 22px; }
.service-card h3 { font-size: 16px; }
.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-card .arrow {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.01em;
}
.service-card:hover .arrow { color: var(--dark); }

/* Why us */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  align-items: flex-start;
  gap: 14px;
}
.benefit-icon {
  width: 72px;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  color: var(--dark);
}
.benefit-icon .ti { font-size: 36px; }
.benefit p { min-height: 4.6em; }
.benefit h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.3;
  min-height: 2.6em;
  width: 100%;
  align-self: stretch;
  text-align: center;
}
.benefit p {
  width: 100%;
  align-self: stretch;
  text-align: center;
}
.benefit p {
  color: var(--text-on-dark);
  font-size: 14px;
  line-height: 1.55;
}

/* Reviews */
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin: -28px 0 48px;
}
.rating-stars { color: #BA7517; letter-spacing: 0.05em; font-size: 16px; }
.rating-row b { color: var(--text-dark); font-weight: 700; }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews { grid-template-columns: 1fr; } }

/* Brands grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .brands-grid { grid-template-columns: repeat(2, 1fr); } }
.brand-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 24px 18px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-on-dark);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.brand-card:hover { transform: translateY(-2px); border-color: var(--yellow); }
.brand-logo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,205,5,0.08);
  border: 1px solid rgba(255,205,5,0.25);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: 0.02em;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.brand-models { font-size: 11px; color: var(--text-on-dark); opacity: 0.7; line-height: 1.4; }
.review {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-stars { color: #BA7517; letter-spacing: 0.08em; font-size: 14px; }
.review-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.review p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-on-dark);
}
.review-foot {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: gap 0.15s ease;
}
.reviews-link:hover { gap: 10px; }

/* Map + location */
.location {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.location-info { padding-top: 8px; }
.location-info h2 { margin-bottom: 28px; }
.info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-row .ti {
  font-size: 20px;
  color: var(--dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-row .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.info-row .value { font-size: 15px; color: var(--white); }

.map-frame {
  min-height: 480px;
  height: 480px;
  background: var(--dark);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

/* Stylized "map" placeholder — dark themed schematic */
.map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* FAQ */
.faq {
  max-width: 640px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-body);
}
.faq-q:hover { color: var(--dark); }
.faq-q .ti {
  font-size: 22px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .ti { transform: rotate(180deg); color: var(--dark); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 22px;
}
.faq-a strong { color: var(--text-dark); font-weight: 700; }

/* Final CTA */
.final-cta {
  text-align: center;
  padding: clamp(56px, 7vw, 88px) 0;
}
.final-cta .eyebrow { display: inline-block; margin-bottom: 14px; opacity: 0.7; }
.final-cta h2 { max-width: 18ch; margin: 0 auto 16px; color: var(--dark); }
.final-cta p { max-width: 42ch; margin: 0 auto 36px; color: var(--dark); font-size: 16px; font-weight: 500; }
/* High-specificity overrides — beat the global section-yellow/cream text rules */
.section-yellow.final-cta .eyebrow,
section.section-yellow.final-cta .eyebrow { color: var(--dark); opacity: 0.85; font-weight: 600; }
.section-yellow.final-cta h2,
section.section-yellow.final-cta h2 { color: var(--dark); }
.section-yellow.final-cta p,
section.section-yellow.final-cta p { color: var(--dark); font-weight: 500; }
.section-yellow.final-cta p strong,
section.section-yellow.final-cta p strong { color: var(--dark); font-weight: 700; }
.final-cta .ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* Legal disclaimer (small print at footer) */
.legal-disclaimer {
  margin-top: 32px;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legal-disclaimer p {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,0.42);
  max-width: 100%;
  margin: 0;
  letter-spacing: 0.005em;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 48px 0 24px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--dark));
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-brand .logo { color: var(--yellow); margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--yellow); color: var(--dark); }
.footer-brand .logo-mark::before { background-image: repeating-linear-gradient(90deg, var(--dark) 0 2px, transparent 2px 5px); }
.footer-brand p { font-size: 14px; line-height: 1.55; max-width: 28ch; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-on-dark);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--white); }

.footer-contact {
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  color: var(--text-on-dark);
}
.footer-contact a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 22px;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(197,195,188,0.6);
}
.footer-bottom > *:last-child { margin-bottom: 0; }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* WhatsApp floater (subtle) */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  z-index: 40;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float .ti { font-size: 26px; }

/* Cookies banner */
.cookies-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 8px 32px rgba(27,26,30,0.12);
  font-size: 13px;
  color: var(--text-muted);
  z-index: 60;
}
.cookies-banner button {
  flex-shrink: 0;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 960px) {
  .nav-main, .lang-switch { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-right .btn { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .reviews { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .location { grid-template-columns: 1fr; gap: 32px; }
  .map-frame { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .trust-strip { padding: 24px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-num { font-size: 22px; }
  .trust-item .ti { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .final-cta .ctas .btn { width: 100%; justify-content: center; }
}

/* Density tweak hooks */
body[data-density="airy"] { --section-y: clamp(96px, 11vw, 160px); }
body[data-density="compact"] { --section-y: clamp(48px, 6vw, 88px); }

/* Hero logo above bar */
.hero-logo {
  display: block;
  width: 96px;
  height: auto;
  margin: 0 auto 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.hero.in .hero-logo { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }

/* Dark service cards — no white */
.section-cream { background: #efece4; }
.service-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-on-dark);
}
.service-card h3 { color: var(--white); }
.service-card p { color: var(--text-on-dark); }
.service-card .arrow { color: var(--yellow); }
.service-card:hover .arrow { color: var(--yellow); }
.service-card:hover { border-color: var(--yellow); }
.service-card .card-img { margin: -22px -22px 0; }

/* Google-style review card additions */
.review { background: var(--dark-alt, #2C2C2A); border-color: rgba(255,255,255,0.08); color: var(--text-on-dark); }
.review p, .review .review-text { color: var(--text-on-dark) !important; }
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 13px; color: var(--white); line-height: 1.2; }
.review-meta { font-size: 11px; color: rgba(245,243,237,0.5); }
.google-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim);
}
.google-tag::before { content: 'G'; color: #4285F4; font-weight: 700; font-family: var(--font-display); }

/* ============== HERO IMAGERY ============== */
.hero {
  min-height: clamp(520px, 78vh, 720px);
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vw, 120px) 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27,26,30,0.55) 0%, rgba(27,26,30,0.85) 60%, rgba(27,26,30,0.95) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(255,205,5,0.08), transparent 50%);
}
.hero-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(0.2) contrast(1.05);
  will-change: transform;
  transform: translateY(0);
}
.hero .container { z-index: 2; }

/* ============== SCROLL REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1)  { transition-delay: 0.00s; }
.reveal-stagger.in > *:nth-child(2)  { transition-delay: 0.06s; }
.reveal-stagger.in > *:nth-child(3)  { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(4)  { transition-delay: 0.18s; }
.reveal-stagger.in > *:nth-child(5)  { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(6)  { transition-delay: 0.30s; }
.reveal-stagger.in > *:nth-child(7)  { transition-delay: 0.36s; }
.reveal-stagger.in > *:nth-child(8)  { transition-delay: 0.42s; }
.reveal-stagger.in > *:nth-child(9)  { transition-delay: 0.48s; }
.reveal-stagger.in > *:nth-child(10) { transition-delay: 0.54s; }
.reveal-stagger.in > *:nth-child(11) { transition-delay: 0.60s; }
.reveal-stagger.in > *:nth-child(12) { transition-delay: 0.66s; }

/* Hero entrance */
.hero-bar { transform: scaleX(0); transform-origin: center; transition: transform 0.9s cubic-bezier(0.22,1,0.36,1) 0.1s; }
.hero.in .hero-bar { transform: scaleX(1); }
.hero .eyebrow, .hero h1, .hero-sub, .lang-badge, .hero-ctas {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.hero.in .eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.hero.in h1 { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.hero.in .hero-sub { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }
.hero.in .lang-badge { opacity: 1; transform: translateY(0); transition-delay: 0.52s; }
.hero.in .hero-ctas { opacity: 1; transform: translateY(0); transition-delay: 0.62s; }

/* ============== BRAND STRIP MARQUEE ============== */
.brand-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.brand-track {
  display: flex;
  gap: 48px;
  animation: marquee 50s linear infinite;
  width: max-content;
  align-items: center;
}
.brand-mono {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.brand-mono-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(27,26,30,0.18);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.brand-mono:hover .brand-mono-circle {
  border-color: var(--yellow);
  color: var(--dark);
  transform: scale(1.05);
}
.brand-mono-name {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  opacity: 0.65;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Global no-white surfaces \u2014 everything is dark-toned */
.section-white { background: var(--dark) !important; color: var(--text-on-dark); }
.section-cream { background: #232228 !important; color: var(--text-on-dark); }
.section-cream .eyebrow { color: var(--yellow); }
.section-cream h2, .section-cream h3, .section-cream h1 { color: var(--white); }
.section-cream p, .section-cream .section-head p { color: var(--text-on-dark); }
.section-white .eyebrow { color: var(--yellow); }
.section-white h2, .section-white h3, .section-white h1 { color: var(--white); }
.section-white p, .section-white .section-head p { color: var(--text-on-dark); }
body { background: var(--dark) !important; }

/* FAQ on dark surfaces */
.faq-q { color: var(--white); }
.faq-a { color: var(--text-on-dark); }
.faq-item.open .faq-q .ti { color: var(--yellow) !important; }

/* Info rows on dark */
.info-row .label { color: var(--yellow); }
.review-stars { color: #FFCD05; }

/* Brand strip — text-only, no circles */
.brand-mono { display: flex; align-items: center; gap: 0; }
.brand-mono-circle { display: none !important; }
.brand-mono-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: rgba(245, 243, 237, 0.55);
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.brand-mono:hover .brand-mono-name { color: var(--yellow); }
.brand-track { gap: 64px !important; }
.brand-track::after {
  /* gap dots between brands via separator pseudo not feasible — use flex gap only */
}

/* Larger service icons + bolder type */
.service-card {
  background: var(--dark) !important;
  padding: 36px 24px 28px !important;
  gap: 14px !important;
  text-align: center;
  align-items: center;
}
.service-icon {
  width: 72px !important;
  height: 72px !important;
  border-radius: 14px !important;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(247,194,0,0.18);
}
.service-icon .ti { font-size: 36px !important; }
.service-card h3 {
  font-size: 19px !important;
  font-family: var(--font-display);
  font-weight: 500 !important;
  letter-spacing: 0.015em;
  line-height: 1.25;
}
.service-card p {
  font-size: 14px !important;
  line-height: 1.55;
  color: rgba(245,243,237,0.72) !important;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.service-card .arrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
}

/* ============== INSTAGRAM ============== */
.ig-header {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 640px;
  margin: 32px auto 24px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid rgba(15,15,15,0.08);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(15,15,15,0.04);
}
.ig-avatar {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 215deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34);
  display: flex;
}
.ig-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--yellow);
  object-fit: cover;
  border: 3px solid var(--white);
}
.ig-meta {
  flex: 1;
  min-width: 0;
}
.ig-handle {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 4px;
}
.ig-handle:hover { color: var(--yellow-dark, #c8a300); }
.ig-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted, #666);
  flex-wrap: wrap;
}
.ig-stats strong { color: var(--dark); font-weight: 600; }
.ig-bio { display: none; }
.ig-follow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.ig-follow:hover { background: var(--yellow); color: var(--dark); transform: translateY(-1px); }
.ig-follow .ti { font-size: 18px; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  max-width: 760px;
  margin: 0 auto;
}
.ig-post {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark-alt);
  display: block;
  text-decoration: none;
}
.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ig-post:hover img { transform: scale(1.06); }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.ig-post:hover .ig-overlay { opacity: 1; }
.ig-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ig-overlay .ti { font-size: 22px; }

@media (max-width: 720px) {
  .ig-header {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .ig-avatar { width: 64px; height: 64px; }
  .ig-follow { width: 100%; justify-content: center; }
  .ig-grid { gap: 3px; }
}

/* ===== Compact IG + YouTube Short layout ===== */
.ig-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

/* Profile card (left) */
.ig-profile {
  background: #1a1a1d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 100px;
}
.ig-profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--yellow);
  padding: 4px;
  margin-bottom: 14px;
  border: 2px solid var(--yellow);
}
.ig-profile-avatar img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; background: var(--yellow); }
.ig-profile-handle {
  font-family: var(--font-sans, system-ui), sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.2s;
  letter-spacing: 0;
  text-transform: none;
}
.ig-profile-handle:hover { color: var(--yellow); }
.ig-profile-stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}
.ig-profile-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.ig-profile-stats strong {
  font-family: var(--font-sans, system-ui), sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0;
}
.ig-profile-stats span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.ig-profile-bio {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin: 0 0 18px;
  text-align: center;
}
.ig-profile-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-sans, system-ui), sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  text-transform: none;
}
.ig-profile-follow:hover { transform: translateY(-1px); background: #ffc000; }
.ig-profile-follow .ti { font-size: 18px; }

/* Posts column (center) */
.ig-posts {
  min-width: 0;
}
.ig-posts .ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: none;
}
.ig-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  transition: gap 0.2s;
}
.ig-more-link:hover { gap: 12px; }
.ig-more-link .ti { font-size: 18px; }

/* YouTube short column (right) */
.ig-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ig-video-frame {
  position: relative;
  flex: 1;
  min-height: 380px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,205,5,0.25);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  background: #000;
}
.ig-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ig-video-meta {
  padding: 16px 4px 0;
}
.ig-video-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.ig-video-eyebrow .ti { font-size: 14px; }
.ig-video-meta h3 {
  font-family: var(--font-sans, system-ui), sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}
.ig-video-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.ig-video-link:hover { color: var(--yellow); gap: 10px; }
.ig-video-link .ti { font-size: 15px; }

/* Responsive */
@media (max-width: 1100px) {
  .ig-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .ig-video {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    position: static;
    max-width: 560px;
    margin: 8px auto 0;
  }
  .ig-video-frame { width: 220px; flex: 0 0 220px; }
  .ig-video-meta { flex: 1; padding: 0; }
}
@media (max-width: 760px) {
  .ig-layout { grid-template-columns: 1fr; gap: 20px; }
  .ig-profile { position: static; }
  .ig-video { flex-direction: column; align-items: stretch; max-width: 360px; }
  .ig-video-frame { width: 100%; flex: none; }
}

/* ============== GALLERY (legacy) ============== */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--dark-alt);
}
.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 2 / 4; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
  filter: grayscale(0.15);
}
.gallery-item:hover img { transform: scale(1.04); filter: grayscale(0); }
.gallery-item .cap {
  position: absolute;
  bottom: 12px; left: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(27,26,30,0.7);
  padding: 6px 10px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
@media (max-width: 800px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item:nth-child(1) { grid-row: auto; grid-column: 1 / 3; }
  .gallery-item:nth-child(4) { grid-row: auto; grid-column: 1 / 3; }
}

/* Hover scale on benefit icons */
.benefit-icon { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.benefit:hover .benefit-icon { transform: rotate(-6deg) scale(1.08); }

/* ============== PROCESS (4 pasos) ============== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(to right,
    rgba(255,205,5,0.6) 0 8px,
    transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  padding: 0 18px;
  text-align: center;
  z-index: 1;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  font-family: 'Anton', var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--dark);
  background: var(--yellow);
  border-radius: 50%;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--dark);
}
.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,205,5,0.08);
  color: var(--yellow);
  font-size: 26px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245,243,238,0.78) !important;
  margin: 0;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 48px 16px; }
  .process::before { display: none; }
}
@media (max-width: 520px) {
  .process { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== TECHNICAL DASHED LINES (workshop floor-marking aesthetic) ============== */
.tech-line {
  position: relative;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--yellow) 0 14px, transparent 14px 24px);
  background-size: 24px 100%;
  opacity: 0.85;
  margin: 0;
}
.tech-line.thick {
  height: 22px;
  background-image: repeating-linear-gradient(135deg, var(--yellow) 0 18px, var(--dark) 18px 36px);
  background-size: auto;
  opacity: 1;
  border-top: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
}
.tech-line.with-icon {
  display: flex; align-items: center; justify-content: center;
  background: none;
  height: auto;
  padding: 32px 0;
  gap: 18px;
}
.tech-line.with-icon::before, .tech-line.with-icon::after {
  content: ''; flex: 1; height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--yellow) 0 14px, transparent 14px 24px);
  opacity: 0.7;
}
.tech-line .ti {
  color: var(--yellow);
  font-size: 28px;
  flex-shrink: 0;
}

/* Vertical dashed line accent */
.tech-line-v {
  width: 2px;
  background-image: repeating-linear-gradient(180deg, var(--yellow) 0 10px, transparent 10px 18px);
  opacity: 0.7;
}

/* Workshop corner brackets */
.workshop-bracket {
  position: relative;
}
.workshop-bracket::before, .workshop-bracket::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid var(--yellow);
  pointer-events: none;
}
.workshop-bracket::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.workshop-bracket::after { bottom: -8px; right: -8px; border-left: none; border-top: none; }

/* Iconographic decorations — floating tool icons */
.deco-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.deco-icons .ti {
  position: absolute;
  color: var(--yellow);
  opacity: 0.05;
  font-size: 180px;
}
.deco-icons .deco-1 { top: 8%; left: -3%; transform: rotate(-15deg); }
.deco-icons .deco-2 { top: 50%; right: -4%; transform: rotate(20deg); font-size: 220px; }
.deco-icons .deco-3 { bottom: 8%; left: 30%; transform: rotate(8deg); font-size: 140px; }

/* Section heading icon row — small icons next to eyebrow */
.icon-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 22px;
  opacity: 0.85;
}
.icon-row .ti { animation: float-y 3.2s ease-in-out infinite; }
.icon-row .ti:nth-child(2) { animation-delay: 0.3s; }
.icon-row .ti:nth-child(3) { animation-delay: 0.6s; }

/* Hero corner spec-marks */
.spec-mark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  opacity: 0.6;
  text-transform: uppercase;
}
.spec-mark::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px;
  background: var(--yellow);
  vertical-align: middle;
  margin-right: 8px;
}
.spec-mark.tl { top: 100px; left: 32px; }
.spec-mark.tr { top: 100px; right: 32px; }
.spec-mark.bl { bottom: 32px; left: 32px; }
.spec-mark.br { bottom: 32px; right: 32px; }
@media (max-width: 700px) { .spec-mark { display: none; } }

/* Service card — corner ticks */
.service-card {
  position: relative;
}
.service-card::before, .service-card::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--yellow);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.service-card::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.service-card::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.service-card:hover::before, .service-card:hover::after { opacity: 1; }

/* Final CTA — dashed border */
.final-cta {
  position: relative;
}
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background-image: repeating-linear-gradient(90deg, var(--dark) 0 28px, transparent 28px 44px);
  background-size: 44px 100%;
}
.final-cta::before { top: 0; }
.final-cta::after { bottom: 0; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,205,5,0.5); }
  50% { box-shadow: 0 0 0 14px rgba(255,205,5,0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* WhatsApp pulse */
.wa-float { animation: pulse-glow 2.4s ease-in-out infinite; }

/* Hero subtle parallax + zoom on scroll */
.hero-img { transition: transform 1.2s cubic-bezier(0.22,1,0.36,1); }
.hero.in .hero-img { transform: scale(1.0); }

/* Service icon micro-animation */
.service-icon { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease, box-shadow 0.25s ease; }
.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.12);
  box-shadow: 0 8px 22px rgba(255,205,5,0.35);
}

/* Service card slide-up arrow on hover */
.service-card .arrow {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), color 0.2s ease, gap 0.2s ease;
}
.service-card:hover .arrow {
  transform: translateX(4px);
  gap: 12px;
}

/* Trust strip number — solid dark on yellow (no shimmer; that broke contrast) */
.trust-num {
  color: var(--dark);
  background: none;
  -webkit-text-fill-color: var(--dark);
  animation: none;
}

/* FAQ smooth open with bounce */
.faq-a { transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1), padding 0.4s ease; }
.faq-q { transition: color 0.2s ease, padding-left 0.25s ease; }
.faq-q:hover { padding-left: 6px; color: var(--yellow); }

/* Buttons — magnetic press */
.btn { transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-yellow:hover { box-shadow: 0 10px 26px rgba(255,205,5,0.4); }

/* Review card lift */
.review { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.2s ease, box-shadow 0.3s ease; }
.review:hover { transform: translateY(-4px); border-color: rgba(255,205,5,0.3); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }

/* Marquee speed boost on hover (pause for readability) */
.brand-marquee:hover .brand-track { animation-play-state: paused; }

/* Section accent-line draw-in */
.accent-line { transform-origin: left; transform: scaleX(0); transition: transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s; }
.reveal.in .accent-line, .accent-line { transform: scaleX(1); }
.reveal:not(.in) .accent-line { transform: scaleX(0); }

/* Header link underline polish */
.nav-main a::after { transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); }

/* Eyebrow letter-spacing on view */
.section-head .eyebrow { transition: letter-spacing 0.6s ease; }
.reveal.in .eyebrow { letter-spacing: 0.24em; }

@media (prefers-reduced-motion: reduce) {
  .wa-float, .trust-num { animation: none !important; }
  .reveal, .reveal-stagger > *, .hero .eyebrow, .hero h1, .hero-sub, .lang-badge, .hero-ctas, .hero-bar {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-img { transform: none !important; }
}


/* ============== MOBILE SAFETY NET ============== */
/* Defensive globals to prevent overflow & broken layouts on small screens */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe { max-width: 100%; height: auto; }
.full-map iframe, .ig-video-frame iframe, .map-frame iframe, .zona-map iframe { height: 100% !important; width: 100% !important; } /* preserve aspect-ratio containers */

@media (max-width: 600px) {
  /* Touch-friendly tap targets */
  .btn { min-height: 48px; }
  .menu-toggle { min-width: 48px; min-height: 48px; }
  
  /* Tighten oversized hero on small screens */
  .hero h1 { font-size: clamp(36px, 9vw, 48px) !important; }
  h2 { font-size: clamp(28px, 7vw, 36px); }
  
  /* Hero stack */
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  
  /* Pills / chips don't wrap awkwardly */
  .svc-hero-pills, .pill, .lang-badge-flags { flex-wrap: wrap; }
}

@media (max-width: 380px) {
  /* Extra-narrow phones: reduce container padding so content breathes */
  :root { --gutter: 16px; }
  .hero h1 { font-size: 32px !important; }
}

/* === Scroll-aware header (hide on scroll-down, show on scroll-up) === */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), background 0.2s, box-shadow 0.2s;
  will-change: transform;
}
.site-header.scrolled-down { transform: translateY(-110%) !important; }
.site-header.scrolled-up { transform: translateY(0) !important; box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
body { padding-top: 0; margin: 0; }
@media (max-width: 600px) { body { padding-top: 0; } }
/* Kill black gap between header and breadcrumb on marcas/marky/brands index */
.marcas-hub, .brands-hub, .marky-hub { padding-top: 0 !important; }
.breadcrumb-bar { background: var(--cream, #f5f3ee) !important; border-bottom: 0 !important; margin-top: 0 !important; }
section + .breadcrumb-bar, .site-header + .breadcrumb-bar { margin-top: 0 !important; }

/* Hide legacy cookies-banner */
.cookies-banner { display: none !important; }

/* Kill empty space below footer */
html, body { background: var(--dark); min-height: auto !important; }
body { padding-bottom: 0 !important; margin-bottom: 0 !important; }
.site-footer { margin-bottom: 0 !important; padding-bottom: 24px !important; }
.site-footer + * { margin-top: 0; }
footer ~ * { margin-bottom: 0; }
/* Hide any leftover element after footer that takes height */
.site-footer ~ div:not(.cookie-consent):not(.wa-float):empty { display: none !important; }
.site-header.scrolled-down { transform: translateY(-110%) !important; }
.site-header.scrolled-up { transform: translateY(0) !important; box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

/* Hero photo darken */
#heroImg, .hero-img { filter: brightness(0.8) !important; }
