/* =========================================================
   A.T. Impianti & Elettroforniture — Design System
   Palette (brand): #E30613 rosso · #223B77 blu navy · #0A0A0A ink · #F4F4F5 cream
   Type: Space Grotesk (display) + Inter (body)
   ========================================================= */

:root {
  /* Colors */
  --c-ink: #0A0A0A;
  --c-ink-2: #1A1A1A;
  --c-ink-3: #2A2A2A;
  --c-white: #FFFFFF;
  --c-cream: #F4F4F5;
  --c-cream-2: #EDEDEF;
  --c-line: #E4E4E7;
  --c-line-dark: #2E2E32;
  --c-mute: #71717A;
  --c-mute-dark: #A1A1AA;
  --c-primary: #E30613;
  --c-primary-2: #B4040F;
  --c-primary-light: #FF6B72;
  --c-primary-glow: rgba(227, 6, 19, 0.35);
  --c-primary-soft: rgba(227, 6, 19, 0.05);
  --c-primary-softer: rgba(227, 6, 19, 0.08);
  --c-primary-hover: rgba(227, 6, 19, 0.1);
  --c-primary-active: rgba(227, 6, 19, 0.12);
  --c-accent: #223B77;
  --c-accent-2: #182C5C;
  --c-accent-glow: rgba(34, 59, 119, 0.35);
  --c-gold: #FFB800;

  /* Type */
  --f-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --f-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Space scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.03);
  --sh-md: 0 4px 12px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.05);
  --sh-lg: 0 12px 40px rgba(0,0,0,0.12), 0 30px 80px rgba(0,0,0,0.10);
  --sh-glow: 0 20px 60px -20px var(--c-primary-glow);

  /* Motion */
  --e-out: cubic-bezier(0.22, 1, 0.36, 1);
  --e-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --e-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 560ms;

  /* Container */
  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--c-cream);
  color: var(--c-ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
a > svg, button > svg, a > img { pointer-events: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
input, select, textarea, button { font: inherit; }
ul { list-style: none; }
::selection { background: var(--c-primary); color: var(--c-white); }

/* Accessibility */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--c-ink); color: var(--c-white);
  padding: 12px 20px; border-radius: 8px;
  font-weight: 600; z-index: 10000;
  transition: top var(--t-fast) var(--e-out);
}
.skip-link:focus { top: 16px; }

*:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed; inset: 0;
  background: var(--c-ink);
  z-index: 9999;
  display: grid; place-items: center;
  transition: opacity 350ms var(--e-out), visibility 350ms var(--e-out);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
/* Even before is-hidden fires, only intercept clicks briefly */
.preloader { pointer-events: auto; }
.preloader__logo { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preloader__mark {
  font-family: var(--f-display);
  font-size: 48px; font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.02em;
}
.preloader__bar {
  width: 120px; height: 2px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
  position: relative;
}
.preloader__bar::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--c-primary);
  animation: preloadBar 1.4s var(--e-in-out) infinite;
}
@keyframes preloadBar {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 16px 0;
  transition: padding var(--t-med) var(--e-out), background var(--t-med) var(--e-out);
}
.nav.is-scrolled {
  padding: 10px 0;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(244, 244, 245, 0.75);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav__inner {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--t-fast) var(--e-out);
}
.nav__logo:hover { transform: translateY(-1px); }
.nav__logo-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--c-line);
  flex-shrink: 0;
}
.nav__logo-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.15);
}
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-title { font-family: var(--f-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.nav__logo-sub { font-size: 11px; color: var(--c-mute); font-weight: 500; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--c-line);
  border-radius: 100px;
  padding: 6px;
}
.nav__link {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-3);
  border-radius: 100px;
  transition: color var(--t-fast) var(--e-out), background var(--t-fast) var(--e-out);
}
.nav__link:hover { color: var(--c-ink); background: rgba(0,0,0,0.04); }

.nav__cta { padding: 10px 18px; font-size: 14px; }
.nav__cta--call { padding: 11px 20px; font-weight: 700; letter-spacing: -0.005em; }
.nav__cta--call svg { flex-shrink: 0; }

.nav__phone-icon {
  display: none;
  width: 44px; height: 44px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 4px 16px -4px var(--c-primary-glow);
  transition: transform var(--t-fast) var(--e-out), background var(--t-fast) var(--e-out);
  flex-shrink: 0;
}
.nav__phone-icon:hover { transform: scale(1.06); background: var(--c-primary-2); }
.nav__phone-icon svg { width: 20px; height: 20px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  min-width: 44px; min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-med) var(--e-out), opacity var(--t-fast) var(--e-out);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 100px 24px 40px;
  background: var(--c-cream);
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%);
  transition: transform var(--t-med) var(--e-out);
  z-index: 400;
  min-height: 60vh;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.nav__mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform var(--t-fast) var(--e-out), background var(--t-fast) var(--e-out);
  z-index: 10;
}
.nav__mobile-close:hover { transform: scale(1.06) rotate(90deg); background: var(--c-primary); }
.nav__mobile-close svg { width: 22px; height: 22px; }
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile-link {
  padding: 18px 8px;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid var(--c-line);
}
.nav__mobile-cta {
  margin-top: 24px;
  padding: 18px;
  text-align: center;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 14px;
  font-weight: 600;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform var(--t-fast) var(--e-out), background var(--t-fast) var(--e-out), box-shadow var(--t-med) var(--e-out);
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: 0 4px 20px -6px var(--c-primary-glow);
}
.btn--primary:hover { background: var(--c-primary-2); transform: translateY(-2px); box-shadow: 0 8px 30px -6px var(--c-primary-glow); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: currentColor;
  border: 1.5px solid currentColor;
}
.btn--ghost:hover { background: currentColor; color: var(--c-ink); }

.btn--lg { padding: 16px 28px; font-size: 15px; min-height: 52px; }
.btn--full { width: 100%; justify-content: center; }

/* =========================================================
   HERO / BENTO
   ========================================================= */
.hero {
  padding: 120px 0 60px;
  position: relative;
}

.bento {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: row dense;
}
.hero__bento {
  grid-auto-rows: minmax(140px, auto);
}

.bento__card {
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med) var(--e-out), box-shadow var(--t-med) var(--e-out);
  will-change: transform;
}
.bento__card--dark { background: var(--c-ink); color: var(--c-white); }
.bento__card--dark-alt { background: var(--c-ink-2); color: var(--c-white); border: 1px solid var(--c-line-dark); }
.bento__card--light { background: var(--c-white); color: var(--c-ink); box-shadow: var(--sh-sm); }
.bento__card--accent { background: var(--c-primary); color: var(--c-white); box-shadow: var(--sh-glow); }

/* Hero card layout */
.bento__card--hero {
  grid-column: span 8;
  grid-row: span 3;
  min-height: 520px;
  display: flex; flex-direction: column;
  padding: 44px;
}
.bento__card--location { grid-column: span 4; grid-row: span 1; display: flex; flex-direction: column; }
.bento__card--stat { grid-column: span 4; grid-row: span 1; }
.bento__card--photo { grid-column: span 4; grid-row: span 1; min-height: 206px; }
.bento__card--cert { grid-column: span 4; grid-row: span 1; display: flex; gap: 16px; align-items: flex-start; }
.bento__card--marquee { grid-column: span 12; grid-row: span 1; padding: 24px 0; }

.bento__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  align-self: flex-start;
  margin-bottom: auto;
}
.bento__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 12px var(--c-primary);
  animation: pulse 2s var(--e-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(38px, 6.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 40px 0 24px;
}
.hero__title-line { display: block; }
.hero__title-accent {
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary-light) 50%, var(--c-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .btn--ghost { color: var(--c-white); border-color: rgba(255,255,255,0.3); }
.hero__actions .btn--ghost:hover { background: var(--c-white); color: var(--c-ink); border-color: var(--c-white); }

.hero__grid-lines {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  pointer-events: none;
  mask-image: linear-gradient(to left, black, transparent);
  -webkit-mask-image: linear-gradient(to left, black, transparent);
}
.hero__spark {
  position: absolute;
  right: -100px; top: 50%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--c-primary-glow) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(20px);
  animation: floatSpark 8s var(--e-in-out) infinite;
}
@keyframes floatSpark {
  0%, 100% { transform: translateY(-50%) translateX(0) scale(1); }
  50% { transform: translateY(-40%) translateX(-30px) scale(1.1); }
}

/* Location card */
.bento__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 20px;
}
.location__pin { width: 44px; height: 44px; color: var(--c-primary); margin-bottom: 12px; }
.location__pin svg { width: 100%; height: 100%; }
.location__text { display: flex; flex-direction: column; gap: 2px; }
.location__text strong { font-family: var(--f-display); font-weight: 600; font-size: 24px; letter-spacing: -0.02em; }
.location__text span { font-family: var(--f-display); font-weight: 600; font-size: 20px; color: var(--c-primary); }
.location__text em { font-style: normal; color: var(--c-mute); font-size: 14px; margin-top: 4px; }
.bento__arrow {
  position: absolute; top: 24px; right: 24px;
  width: 32px; height: 32px;
  background: var(--c-cream);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform var(--t-fast) var(--e-out), background var(--t-fast) var(--e-out);
}
.bento__arrow svg { width: 14px; height: 14px; }
.bento__card--light:hover .bento__arrow { background: var(--c-primary); color: var(--c-white); transform: translate(2px, -2px); }

/* Stat cards */
.stat__value {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stat__label {
  font-size: 13px;
  color: currentColor;
  opacity: 0.75;
  max-width: 200px;
  line-height: 1.4;
}
.bento__card--accent .stat__label { opacity: 0.9; }

/* Cert card */
.cert__seal {
  flex-shrink: 0;
  width: 48px; height: 48px;
  color: var(--c-primary);
}
.cert__seal svg { width: 100%; height: 100%; }
.cert__text { display: flex; flex-direction: column; gap: 4px; }
.cert__text strong { font-family: var(--f-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.cert__text span { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* ---------- Photo bento card (hero) ---------- */
.bento__card--photo {
  padding: 0;
  overflow: hidden;
  position: relative;
  color: var(--c-white);
  background: var(--c-ink);
  min-height: 206px;
  display: block;
}
.bento__card--photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--e-out);
}
.bento__card--photo:hover img { transform: scale(1.06); }
.bento__photo-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.bento__photo-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.bento__photo-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--c-white);
  margin-bottom: 6px;
}
.bento__photo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-white);
  transition: gap var(--t-fast) var(--e-out);
}
.bento__card--photo:hover .bento__photo-cta { gap: 12px; }

/* Marquee */
.marquee__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-mute);
  padding: 0 32px 12px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-ink);
  white-space: nowrap;
}
.marquee__track span:nth-child(2n) { color: var(--c-mute); font-size: 16px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 100px 0;
  position: relative;
}
.section--tight { padding: 60px 0 100px; }
.section--light { background: var(--c-cream); }
.section--dark { background: var(--c-ink); color: var(--c-white); }
.section--split { background: var(--c-cream); }
.section--contact { padding-bottom: 120px; }

.section__head {
  max-width: 780px;
  margin-bottom: 60px;
}
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--dark { color: var(--c-white); }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 24px;
}
.section__eyebrow--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}
.section__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--c-primary);
  border-radius: 50%;
}

.section__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section__title em {
  font-style: normal;
  color: var(--c-primary);
  position: relative;
}
.section__title--dark em { color: var(--c-primary); }

.section__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--c-mute);
  line-height: 1.55;
  max-width: 640px;
}
.section__lead--dark { color: rgba(255,255,255,0.65); }
.section__head--center .section__lead { margin-inline: auto; }

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service {
  background: var(--c-white);
  padding: 40px 32px 32px;
  border-radius: var(--r-lg);
  position: relative;
  transition: transform var(--t-med) var(--e-out), box-shadow var(--t-med) var(--e-out);
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.service--dark {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink-2);
}
.service--dark:hover { box-shadow: var(--sh-lg); }

.service__num {
  position: absolute;
  top: 24px; right: 32px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-mute);
  letter-spacing: 0.05em;
}
.service--dark .service__num { color: var(--c-mute-dark); }

.service__icon {
  width: 56px; height: 56px;
  color: var(--c-primary);
  margin-bottom: 32px;
}
.service__icon svg { width: 100%; height: 100%; }

.service__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.service__desc {
  font-size: 14px;
  color: var(--c-mute);
  margin-bottom: 24px;
  line-height: 1.6;
}
.service--dark .service__desc { color: var(--c-mute-dark); }

.service__list {
  border-top: 1px solid var(--c-line);
  padding-top: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service--dark .service__list { border-color: var(--c-line-dark); }
.service__list li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  color: var(--c-ink-3);
}
.service--dark .service__list li { color: rgba(255,255,255,0.8); }
.service__list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 8px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
  transform: rotate(45deg);
}

.service__cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  padding: 4px 0;
  transition: gap var(--t-fast) var(--e-out);
}
.service__cta a:hover { gap: 12px; }
.service--dark .service__cta a { color: var(--c-primary-light); }

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__step {
  position: relative;
  padding: 32px 24px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--t-med) var(--e-out), border-color var(--t-med) var(--e-out);
}
.process__step:hover { transform: translateY(-4px); border-color: var(--c-primary); background: var(--c-primary-soft); }

.process__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--c-primary);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1;
}
.process__line {
  position: absolute;
  top: 52px; right: -12px;
  height: 1px;
  width: 24px;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), transparent);
}
.process__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.process__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* =========================================================
   SHOP
   ========================================================= */
.shop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.shop__cat {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform var(--t-med) var(--e-out), box-shadow var(--t-med) var(--e-out), border-color var(--t-med) var(--e-out);
  display: flex; flex-direction: column;
}
.shop__cat:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.shop__cat--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--c-white) 0%, #F9FAFC 100%);
}
.shop__cat--dark {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink-2);
}
.shop__cat--dark:hover { box-shadow: var(--sh-lg); }

.shop__cat-visual {
  aspect-ratio: 16 / 8;
  background: var(--c-cream);
  display: grid; place-items: center;
  color: var(--c-primary);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.shop__cat--dark .shop__cat-visual { background: var(--c-ink-2); }
.shop__cat--featured .shop__cat-visual {
  aspect-ratio: 16 / 6;
  background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-ink-3) 100%);
  color: var(--c-primary);
}
.shop__cat-visual--accent {
  background: var(--c-primary) !important;
  color: var(--c-white) !important;
}
.shop__cat-visual--photo {
  padding: 0 !important;
  background: var(--c-ink) !important;
  position: relative;
  overflow: hidden;
}
.shop__cat-visual--photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--e-out);
}
.shop__cat:hover .shop__cat-visual--photo img { transform: scale(1.06); }
.shop__cat-visual--photo::before {
  display: none;
}
.shop__cat-visual--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.shop__cat-visual svg {
  width: 80px; height: 80px;
  transition: transform var(--t-slow) var(--e-out);
}
.shop__cat:hover .shop__cat-visual svg { transform: rotate(6deg) scale(1.1); }

.shop__cat-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.shop__cat-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.shop__cat-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 14px;
}
.shop__cat--dark .shop__cat-count { color: var(--c-mute-dark); }
.shop__cat-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.shop__cat--featured .shop__cat-title { font-size: 30px; }
.shop__cat-desc {
  font-size: 14px;
  color: var(--c-mute);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.shop__cat--dark .shop__cat-desc { color: rgba(255,255,255,0.7); }
.shop__cat-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  transition: color var(--t-fast) var(--e-out);
}
.shop__cat--dark .shop__cat-cta { color: var(--c-primary-light); }

.shop__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-primary);
}
.shop__note-icon {
  width: 24px; height: 24px;
  color: var(--c-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.shop__note strong { display: block; margin-bottom: 4px; font-size: 15px; font-family: var(--f-display); }
.shop__note span { display: block; font-size: 14px; color: var(--c-mute); }

/* =========================================================
   SPLIT (CHI SIAMO)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.split__lead {
  font-size: 18px;
  color: var(--c-ink-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.split__body {
  font-size: 15px;
  color: var(--c-mute);
  line-height: 1.7;
  margin-bottom: 40px;
}
.split__lead strong, .split__body strong {
  color: var(--c-ink);
  font-weight: 600;
}
.split__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.value {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 20px;
  background: var(--c-white);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-line);
}
.value__icon {
  width: 28px; height: 28px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.value strong { display: block; font-family: var(--f-display); font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.value span { display: block; font-size: 13px; color: var(--c-mute); }

.split__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.split__stat-card {
  padding: 32px 24px;
  border-radius: var(--r-md);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform var(--t-med) var(--e-out);
}
.split__stat-card:hover { transform: translateY(-4px); }
.split__stat-card--dark { background: var(--c-ink); color: var(--c-white); border-color: var(--c-ink-2); }
.split__stat-card--accent { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }
.split__stat-card--photo {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: var(--c-ink);
  min-height: 220px;
  border-color: transparent;
}
.split__stat-card--wide { grid-column: span 2; }
.split__stat-card--photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--e-out);
}
.split__stat-card--photo:hover img { transform: scale(1.06); }
.split__photo-caption {
  position: absolute;
  left: 20px; bottom: 16px;
  z-index: 1;
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 8px 14px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}
.split__stat-card--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.split__stat-value {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.split__stat-label {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.4;
}
.split__stat-card--accent .split__stat-label { opacity: 0.95; }

/* =========================================================
   TEAM
   ========================================================= */
.section--team { padding: 100px 0; }
.team {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.team__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-ink-2);
  box-shadow: var(--sh-lg);
}
.team__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--e-out);
}
.team__photo:hover img { transform: scale(1.04); }
.team__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.team__photo-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-white);
}
.team__photo-dot {
  width: 8px; height: 8px;
  background: var(--c-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--c-primary);
  animation: pulse 2s var(--e-in-out) infinite;
}

.team__content { display: flex; flex-direction: column; gap: 24px; }
.team__content .section__eyebrow { margin-bottom: 0; }
.team__content .section__title { margin-bottom: 0; }
.team__content .section__lead { margin-top: -8px; }

.team__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
}
.team__value { display: flex; flex-direction: column; gap: 4px; }
.team__value-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-primary);
}
.team__value-label {
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.team__cta { align-self: flex-start; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--c-white);
  padding: 32px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  transition: transform var(--t-med) var(--e-out), box-shadow var(--t-med) var(--e-out);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.review__stars {
  color: var(--c-gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink-2);
  margin-bottom: 24px;
  flex: 1;
}
.review footer strong { display: block; font-family: var(--f-display); font-weight: 600; font-size: 15px; }
.review footer span { font-size: 13px; color: var(--c-mute); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.contact__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.contact__block--map { grid-column: span 3; }
.contact__block { display: flex; flex-direction: column; gap: 8px; }
.contact__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact__value--link {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  transition: background var(--t-fast) var(--e-out), border-color var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-out);
}
.contact__value--link:hover { background: var(--c-primary-hover); border-color: var(--c-primary); transform: translateY(-2px); }
.contact__value--wa:hover { background: rgba(37, 211, 102, 0.12); border-color: #25D366; }
.contact__value--wa strong::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: #25D366;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 2px;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
}

.contact__hours {
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
}
.contact__hours-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--c-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact__hours-title::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}
.contact__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact__hours-row:last-child { border-bottom: none; }
.contact__hours-row span { color: rgba(255,255,255,0.65); }
.contact__hours-row em { font-style: normal; font-weight: 600; color: var(--c-white); font-variant-numeric: tabular-nums; }
.contact__hours-row--closed em { color: rgba(255,255,255,0.4); font-weight: 400; }
.contact__value strong { font-family: var(--f-display); font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.contact__value span { font-size: 13px; color: rgba(255,255,255,0.65); }
.contact__value em { font-style: normal; font-size: 12px; color: var(--c-primary); font-weight: 600; margin-top: 4px; }

.contact__map {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--c-white);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
}
.contact__map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 18px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-out);
  box-shadow: 0 4px 16px -4px var(--c-primary-glow);
  min-height: 44px;
}
.contact__map-link:hover { background: var(--c-primary-2); transform: translateY(-1px); }

.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  color: var(--c-white);
  font-size: 15px;
  transition: border-color var(--t-fast) var(--e-out), background var(--t-fast) var(--e-out);
  min-height: 48px;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field textarea { resize: vertical; min-height: 100px; font-family: var(--f-body); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  background: var(--c-primary-softer);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field select option { background: var(--c-ink); color: var(--c-white); }

.field--check { flex-direction: row; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.7); }
.field--check input { width: 20px; height: 20px; min-height: 20px; margin: 0; accent-color: var(--c-primary); }
.field--check a { color: var(--c-primary); text-decoration: underline; }

.form__status {
  font-size: 14px;
  color: var(--c-primary);
  min-height: 20px;
  text-align: center;
}
.form__status.is-success { color: #22c55e; }
.form__status.is-error { color: #ef4444; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--c-ink);
  color: var(--c-white);
  padding: 80px 0 40px;
  border-top: 1px solid var(--c-ink-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--c-line-dark);
}
.footer__brand { max-width: 320px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer__mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.footer__mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.15);
}
.footer__logo div { display: flex; flex-direction: column; line-height: 1.1; }
.footer__logo strong { font-family: var(--f-display); font-weight: 600; font-size: 16px; }
.footer__logo span { font-size: 11px; color: var(--c-mute-dark); }
.footer__desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 8px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-out);
  display: inline-block;
}
.footer__col a:hover { color: var(--c-primary); transform: translateX(4px); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 16px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { transition: color var(--t-fast) var(--e-out); }
.footer__legal a:hover { color: var(--c-primary); }
.footer__legal-note { font-size: 13px; color: rgba(255,255,255,0.45); }

/* =========================================================
   FLOATING ACTION BUTTONS
   ========================================================= */
.fab-group {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 300;
}
.fab {
  position: relative;
  width: 56px; height: 56px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 30px -6px var(--c-primary-glow), 0 0 0 8px var(--c-primary-softer);
  transition: transform var(--t-med) var(--e-spring), box-shadow var(--t-med) var(--e-out);
}
.fab svg { width: 22px; height: 22px; }
.fab:hover { transform: scale(1.08); box-shadow: 0 12px 40px -6px var(--c-primary-glow), 0 0 0 12px var(--c-primary-active); }
.fab--wa {
  background: #25D366;
  box-shadow: 0 8px 30px -6px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1);
}
.fab--wa:hover {
  background: #1EBE5C;
  box-shadow: 0 12px 40px -6px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.15);
}
.fab--wa svg { width: 26px; height: 26px; }
.fab__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  animation: fabPulse 2s var(--e-out) infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--e-out), transform 900ms var(--e-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .bento__card--hero { grid-column: span 12; grid-row: span 2; min-height: 460px; }
  .bento__card--location { grid-column: span 6; }
  .bento__card--stat { grid-column: span 6; }
  .bento__card--photo { grid-column: span 6; }
  .bento__card--cert { grid-column: span 12; }
  .bento__card--marquee { grid-column: span 12; }

  .services { grid-template-columns: repeat(2, 1fr); }
  .services .service:nth-child(3) { grid-column: span 2; }

  .process { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none; }

  .shop { grid-template-columns: repeat(2, 1fr); }
  .shop__cat--featured { grid-column: span 2; }

  .split { grid-template-columns: 1fr; gap: 48px; }
  .split__right { position: static; }
  .split__stat-card--wide { grid-column: span 2; }

  .reviews { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }

  .team { grid-template-columns: 1fr; gap: 40px; }
  .team__photo { aspect-ratio: 16 / 12; }

  .contact { grid-template-columns: 1fr; }
  .contact__info { grid-template-columns: repeat(2, 1fr); }
  .contact__block--map { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }

  .nav__links, .nav__cta { display: none; }
  .nav__phone-icon { display: grid; }
  .nav__toggle { display: flex; }

  .hero { padding: 100px 0 40px; }
  .bento__card { padding: 24px; border-radius: var(--r-md); }
  .bento__card--hero { padding: 28px; min-height: 420px; }
  .bento__card--location { grid-column: span 12; }
  .bento__card--stat { grid-column: span 6; }
  .bento__card--photo { grid-column: span 12; min-height: 240px; }

  .hero__title { margin: 24px 0 16px; }
  .hero__lead { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .section { padding: 70px 0; }
  .section__head { margin-bottom: 40px; }

  .services { grid-template-columns: 1fr; gap: 16px; }
  .services .service:nth-child(3) { grid-column: span 1; }
  .service { padding: 32px 24px 24px; }

  .process { grid-template-columns: 1fr; }
  .process__step { padding: 24px 20px; }

  .shop { grid-template-columns: 1fr; gap: 12px; }
  .shop__cat--featured { grid-column: span 1; }

  .split__values { grid-template-columns: 1fr; }
  .team__values { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .team__value-num { font-size: 32px; }
  .section--team { padding: 70px 0; }
  .split__right { grid-template-columns: 1fr 1fr; gap: 12px; }
  .split__stat-card--wide { grid-column: span 2; }
  .split__stat-card--photo { min-height: 180px; }

  .contact__info { grid-template-columns: 1fr; gap: 16px; }
  .contact__block--map { grid-column: span 1; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer { padding: 60px 0 32px; }

  .fab-group { bottom: 16px; right: 16px; gap: 10px; }
  .fab { width: 52px; height: 52px; }
  .fab--wa svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 40px; }
  .section__title { font-size: 30px; }
  .stat__value { font-size: 42px; }
  .bento__badge { font-size: 10px; padding: 6px 12px; }
  .marquee__track span { font-size: 16px; }
  .marquee__track span:nth-child(2n) { font-size: 14px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__spark, .fab__pulse, .marquee__track, .bento__dot { animation: none !important; }
  .hero__title-accent { -webkit-text-fill-color: var(--c-primary); background: none; }
}
