/* =========================================================
   Tasha Car Detailing — styles.css
   Design language: temp_1_ref_lian (Juan) · brand accent = Tasha PINK
   Palette: light bg · #09121b navy ink · #ec1e8c pink accent
   Barlow Semi Condensed (display) · Anton (big titles) · Inter (body) · Fasthand (script)
   ========================================================= */
:root {
  --bg:        #fefafc;
  --surface:   #ffffff;
  --soft:      #f5f4f6;
  --ink:       #0b0a12;
  --ink-2:     #0b0a12;
  --muted:     #6a6472;
  --accent:    #ec1e8c;   /* Tasha hot pink */
  --accent-d:  #c8147a;
  --accent-soft:#ffe6f4;
  --dark:      #0b0a12;
  --dark-2:    #14101c;
  --line:      #eae7ec;
  --line-dark: rgba(255,255,255,.10);
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 22px 50px rgba(11,10,18,.14);
  --maxw:      1180px;
  --anton:     'Anton', Impact, sans-serif;
  --head:      'Barlow Semi Condensed', system-ui, sans-serif;
  --body:      'Inter', system-ui, sans-serif;
  --script:    'Fasthand', cursive;
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; font-family: var(--body); background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 860px; }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; line-height: 1.02; margin: 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--head); font-weight: 700; font-size: 1.05rem; letter-spacing: .3px; padding: .8rem 1.6rem; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-sm { font-size: .95rem; padding: .55rem 1.1rem; }
.btn-lg { font-size: 1.18rem; padding: .95rem 1.9rem; }
.btn-block { width: 100%; }
.btn-yellow { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(236,30,140,.4); }
.btn-yellow:hover { transform: translateY(-2px); background: var(--accent-d); box-shadow: 0 12px 28px rgba(236,30,140,.5); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #1a1626; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-whatsapp { background: var(--ink); color: #fff; box-shadow: 0 8px 22px rgba(11,10,18,.3); }
.btn-whatsapp:hover { transform: translateY(-2px); background: #1a1626; }

/* ---------- Header (floating glass pill) ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; background: transparent; pointer-events: none; }
.header-inner { pointer-events: auto; display: flex; align-items: center; gap: 1.2rem; height: 64px; padding: 0 .9rem 0 1.1rem; background: rgba(254,250,252,.5); -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%); border: 1px solid rgba(255,255,255,.55); border-radius: 999px; box-shadow: 0 10px 30px rgba(11,10,18,.12); transition: background .3s ease, box-shadow .3s ease; }
.site-header.scrolled .header-inner { background: rgba(254,250,252,.82); box-shadow: 0 12px 34px rgba(11,10,18,.16); }
/* Over the hero video (not scrolled): solid WHITE pill, dark text. After the hero it reverts to the base translucent glass. */
.site-header:not(.scrolled) .header-inner { background: #ffffff; border-color: rgba(255,255,255,.8); box-shadow: 0 12px 32px rgba(11,10,18,.22); }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-logo { height: 46px; width: auto; display: block; flex-shrink: 0; }
.brand-text { font-family: var(--head); font-weight: 800; font-size: 1.5rem; line-height: .85; letter-spacing: .5px; color: var(--ink); }
.brand-text small { display: block; font-family: var(--body); font-weight: 600; font-size: .56rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; gap: 1.8rem; margin: 0 auto; }
.nav a { font-weight: 600; color: var(--ink-2); font-size: 1rem; transition: color .15s; }
.nav a:hover { color: var(--accent); }
.header-right { display: flex; align-items: center; gap: .9rem; }
.q-short { display: none; }
.header-phone { display: inline-flex; align-items: center; gap: .6rem; }
.phone-ico { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent); flex-shrink: 0; }
.phone-txt { display: flex; flex-direction: column; line-height: 1.1; }
.phone-txt small { font-size: .72rem; color: var(--muted); }
.phone-txt strong { font-family: var(--head); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (full screen video) ---------- */
.hero { position: relative; width: 100%; min-height: clamp(600px, 100svh, 1000px); display: flex; overflow: hidden; text-align: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; background: var(--ink); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(11,10,18,.74) 0%, rgba(11,10,18,.46) 32%, rgba(11,10,18,.54) 62%, rgba(11,10,18,.9) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 120px 22px clamp(2.2rem, 5vw, 3.4rem); }
.hero-top { display: flex; flex-direction: column; align-items: center; }
.hero-rating { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; font-size: .95rem; margin-bottom: 1rem; }
.hero-rating .stars { color: var(--accent); letter-spacing: 2px; }
.hero-title { font-family: var(--anton); font-weight: 400; font-size: clamp(2.8rem, 7.4vw, 6rem); letter-spacing: 0; text-transform: uppercase; color: #fff; filter: drop-shadow(0 2px 12px rgba(0,0,0,.5)); max-width: 16ch; }
.hero-title .pink { color: var(--accent); }
.hero-sub { color: rgba(255,255,255,.92); max-width: 60ch; margin: 1.4rem auto 0; font-size: clamp(.95rem, 1.4vw, 1.1rem); line-height: 1.6; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-cta-mobile { display: none; }
.hero-cta-desktop { display: inline-flex; }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-soft { background: var(--soft); }
.section-transform { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center-title { text-align: center; font-family: var(--anton); font-weight: 400; font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: 0; text-transform: uppercase; margin-bottom: 2.4rem; }
.center-title .pink { color: var(--accent); }
.center-sub { text-align: center; color: var(--muted); max-width: 680px; margin: -1.6rem auto 2.6rem; }

/* ---------- Main services (2 image cards) ---------- */
.main-services { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.ms-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow); display: block; }
.ms-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ms-card:hover img { transform: scale(1.05); }
.ms-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(11,10,18,.82)); }
.ms-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.6rem; display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; }
.ms-overlay h3 { font-family: var(--anton); font-weight: 400; color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); text-transform: uppercase; letter-spacing: .5px; }

/* ---------- Services grid (6 cards) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 12px 34px rgba(11,10,18,.07); transition: transform .25s, box-shadow .25s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(11,10,18,.14); }
.svc-photo { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-photo img { transform: scale(1.06); }
.svc-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; text-align: center; }
.svc-body h3 { font-family: var(--head); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; letter-spacing: .3px; }
.svc-body p { color: var(--muted); font-size: .95rem; margin: 0; flex: 1; }
.svc-stars { color: var(--accent); letter-spacing: 2px; font-size: .95rem; }
.svc-body .btn { margin-top: .5rem; }

/* ---------- Transform / about ---------- */
.transform-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.transform-copy h2 { font-family: var(--anton); font-weight: 400; font-size: clamp(2.1rem, 4.4vw, 3.2rem); text-transform: uppercase; margin-bottom: 1rem; }
.transform-copy p { color: var(--muted); margin: 0 0 1rem; }
.transform-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem; }
.transform-copy strong { color: var(--ink); }
.ba-eyebrow { display: inline-block; font-family: var(--head); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-size: .85rem; margin-bottom: .4rem; }

/* ---------- Before / After slider ---------- */
.ba { --pos: 50%; --divider-opacity: 1; position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; background: var(--soft); user-select: none; touch-action: none; cursor: ew-resize; box-shadow: var(--shadow); }
.ba__base { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba__before { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--pos)) 0 0); pointer-events: none; }
.ba__before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after-mask { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 0 0 var(--pos)); pointer-events: none; }
.ba__label { position: absolute; top: 14px; padding: 6px 14px; font-family: var(--head); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; border-radius: 999px; pointer-events: none; z-index: 3; white-space: nowrap; }
.ba__label--before { left: 14px; background: rgba(11,10,18,.78); backdrop-filter: blur(6px); color: #fff; }
.ba__label--after { right: 14px; background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(236,30,140,.5); }
.ba__divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff; box-shadow: 0 0 14px rgba(255,255,255,.7); transform: translateX(-1px); pointer-events: none; z-index: 4; opacity: var(--divider-opacity); transition: opacity .15s ease; }
.ba__handle { position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%); width: 78px; height: 40px; border-radius: 999px; background: var(--ink); color: #fff; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: ew-resize; box-shadow: 0 10px 28px rgba(11,10,18,.45); z-index: 5; transition: transform .15s, background .15s; }
.ba__handle:hover { background: var(--accent); color: #fff; transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 10px 28px rgba(236,30,140,.5); }
.ba-meta { margin-top: 1.1rem; }
.ba-meta h3 { font-family: var(--head); font-size: 1.5rem; font-weight: 800; text-transform: uppercase; }
.ba-meta p { color: var(--muted); margin: .2rem 0 0; }
.ba-select { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.ba-chip { font-family: var(--head); font-weight: 700; font-size: .95rem; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem; cursor: pointer; transition: .2s; }
.ba-chip:hover { border-color: var(--accent); color: var(--accent); }
.ba-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Gallery (3 carousels) ---------- */
.gallery-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.gcol h3 { font-family: var(--anton); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 2rem); text-align: center; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .5px; }
.slider { position: relative; border-radius: var(--radius); overflow: hidden; background: #111; box-shadow: var(--shadow); }
.slides { display: flex; transition: transform .5s ease; }
.slide { min-width: 100%; aspect-ratio: 1/1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.snav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.92); border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 3; transition: .2s; }
.snav:hover { background: var(--accent); }
.snav:hover svg { fill: #fff; }
.snav svg { width: 18px; height: 18px; fill: #111; }
.snav.prev { left: 12px; } .snav.next { right: 12px; }

/* ---------- Interactive bento gallery ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(6, 104px); gap: 14px;
  grid-template-areas:
    "detail detail vinyl   wheels"
    "detail detail vinyl   wheels"
    "ppf    color  ceramic wheels"
    "ppf    color  ceramic wheels"
    "exotic exotic luxury  luxury"
    "exotic exotic luxury  luxury"; }
.bi-detail { grid-area: detail; }
.bi-vinyl { grid-area: vinyl; }
.bi-ppf { grid-area: ppf; }
.bi-ceramic { grid-area: ceramic; }
.bi-wheels { grid-area: wheels; }
.bi-color { grid-area: color; }
.bi-exotic { grid-area: exotic; }
.bi-luxury { grid-area: luxury; }
.bento-item { position: relative; border: 0; padding: 0; margin: 0; border-radius: 16px; overflow: hidden; cursor: pointer; background: #111; box-shadow: 0 10px 30px rgba(11,10,18,.12); }
.bento-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.bento-item:hover img { transform: scale(1.06); }
.b-2x2 { grid-column: span 2; grid-row: span 2; }
.b-1x2 { grid-column: span 1; grid-row: span 2; }
.bento-cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; text-align: left; padding: 14px; gap: 2px; background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.15) 46%, transparent); opacity: 0; transition: opacity .25s ease; }
.bento-item:hover .bento-cap, .bento-item:focus-visible .bento-cap { opacity: 1; }
.bento-cap b { font-family: var(--head); font-weight: 700; font-size: 1.05rem; color: #fff; line-height: 1.1; }
.bento-cap small { color: rgba(255,255,255,.82); font-size: .8rem; }
.bento-cap .used { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: #22c55e; color: #fff; font-size: .72rem; font-weight: 700; vertical-align: middle; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(10,10,15,.72); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.lightbox.open { display: flex; }
.lb-stage { position: relative; width: min(92vw, 900px); aspect-ratio: 16/9; max-height: 74vh; border-radius: 16px; overflow: hidden; background: #0a0a0f; box-shadow: 0 30px 80px rgba(0,0,0,.55); animation: lbpop .3s cubic-bezier(.2,.8,.2,1); }
@keyframes lbpop { from { transform: scale(.96); opacity: .6; } to { transform: scale(1); opacity: 1; } }
.lb-stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); }
.lb-cap h3 { font-family: var(--head); font-weight: 800; color: #fff; font-size: 1.4rem; text-transform: uppercase; }
.lb-cap p { color: rgba(255,255,255,.82); font-size: .92rem; margin: .2rem 0 0; }
.lb-close { position: absolute; top: 18px; right: 18px; z-index: 210; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: #111; cursor: pointer; display: grid; place-items: center; transition: transform .2s, background .2s; }
.lb-close:hover { transform: scale(1.1); background: #fff; }
.lb-close svg { width: 18px; height: 18px; }
.lb-dock { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 210; display: flex; align-items: center; padding: 10px 16px; border-radius: 18px; background: rgba(255,255,255,.12); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.28); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.lb-dock button { width: 46px; height: 46px; margin: 0 -6px; border: 0; padding: 0; border-radius: 11px; overflow: hidden; cursor: pointer; background: #111; transform: rotate(var(--r)); transition: transform .25s cubic-bezier(.2,.8,.2,1), outline-color .2s; box-shadow: 0 4px 14px rgba(0,0,0,.4); }
.lb-dock button img { width: 100%; height: 100%; object-fit: cover; }
.lb-dock button:hover { transform: rotate(0deg) scale(1.3) translateY(-10px); z-index: 5; }
.lb-dock button.active { transform: rotate(0deg) scale(1.2) translateY(-8px); outline: 2px solid #fff; z-index: 6; }
@media (max-width: 760px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 84px; gap: 10px;
    grid-template-areas:
      "detail  detail"
      "detail  detail"
      "vinyl   wheels"
      "vinyl   wheels"
      "color   wheels"
      "color   wheels"
      "ppf     ceramic"
      "ppf     ceramic"
      "luxury  luxury"
      "luxury  luxury"
      "exotic  exotic"
      "exotic  exotic"; }
  /* mobile: show only the title on every tile (drop descriptions) */
  .bento .bento-cap small { display: none; }
  .bento-cap { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,.85), transparent 60%); }
  .lb-stage { aspect-ratio: 4/3; }
  .lb-dock button { width: 40px; height: 40px; }
}

/* ---------- About Us ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: var(--radius); box-shadow: var(--shadow); }

/* About collage — couple photo (base) + vans photo overlapping on top */
.about-collage { position: relative; padding: 22px 0 46px; }
.about-collage .ac-main { position: relative; z-index: 1; display: block; width: 78%; margin-left: auto; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 16px; box-shadow: 0 24px 50px rgba(11,10,18,.22); }
.about-collage .ac-top { position: absolute; bottom: -16px; right: -16px; z-index: 3; width: 55%; aspect-ratio: 5/3; object-fit: cover; border-radius: 12px; border: 6px solid #fff; box-shadow: 0 18px 40px rgba(11,10,18,.3); transform: rotate(3.5deg); transition: transform .35s ease; }
.about-collage:hover .ac-top { transform: rotate(1.5deg) translateY(-4px); }
.about-collage .ac-accent { position: absolute; top: 22px; right: 0; width: 78%; aspect-ratio: 3/4; z-index: 0; background: var(--accent); border-radius: 16px; transform: translate(-8px, -8px); }
@media (max-width: 980px) {
  .about-collage { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .about-collage { max-width: 440px; padding: 24px 0 42px; }
  .about-collage .ac-main { width: 84%; margin: 0 auto; }
  .about-collage .ac-accent { left: 8%; right: auto; width: 84%; }
  .about-collage .ac-top { right: 3%; width: 60%; }
}
.about-copy h2 { font-family: var(--anton); font-weight: 400; font-size: clamp(2.1rem, 4.4vw, 3.2rem); text-transform: uppercase; margin: .3rem 0 1rem; }
.about-copy p { color: var(--muted); margin: 0 0 1rem; }
.ticks { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--ink-2); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .3em; width: 18px; height: 18px; background: var(--accent); -webkit-mask: var(--check) center/contain no-repeat; mask: var(--check) center/contain no-repeat; }

/* ---------- Stat bar ---------- */
.statbar { background: var(--bg); }
.statbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.statbar-item { text-align: center; padding: 1.6rem 1rem; }
.statbar-item strong { display: block; font-family: var(--anton); font-weight: 400; font-size: 2rem; color: var(--accent); line-height: 1; }
.statbar-item span { font-size: .9rem; color: var(--muted); font-weight: 600; }

/* ---------- Reviews (Google) ---------- */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; margin: -1rem 0 2.2rem; }
.gr-badge { display: flex; align-items: center; gap: .8rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.3rem; box-shadow: 0 10px 26px rgba(11,10,18,.08); }
.gr-badge .g { font-family: var(--head); font-weight: 700; font-size: 1.15rem; }
.gr-badge .g b:nth-child(1){color:#4285F4}.gr-badge .g b:nth-child(2){color:#EA4335}.gr-badge .g b:nth-child(3){color:#FBBC05}.gr-badge .g b:nth-child(4){color:#4285F4}.gr-badge .g b:nth-child(5){color:#34A853}.gr-badge .g b:nth-child(6){color:#EA4335}
.gr-badge .rate { font-family: var(--head); font-weight: 800; font-size: 1.05rem; }
.gr-badge .rate .st { color: #f5b301; letter-spacing: 1px; }

.testi-carousel { position: relative; overflow: hidden; }
.testi-track { display: flex; gap: 1.4rem; padding: 8px 0 16px; transition: transform .55s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.testi-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.95); color: var(--ink); font-size: 1.6rem; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: 0 8px 22px rgba(11,10,18,.18); transition: background .2s, color .2s, border-color .2s; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.testi-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.testi-prev { left: 6px; } .testi-next { right: 6px; }
.testimonial { flex: 0 0 clamp(280px, 31%, 380px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: 0 10px 30px rgba(11,10,18,.06); display: flex; flex-direction: column; gap: 1rem; margin: 0; }
.t-stars { color: #f5b301; letter-spacing: 2px; font-size: 1.05rem; }
.testimonial blockquote { margin: 0; color: var(--ink-2); font-size: 1.02rem; line-height: 1.6; flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.t-name { font-family: var(--head); font-weight: 700; font-size: 1.05rem; color: var(--ink); display: flex; flex-direction: column; line-height: 1.15; }
.t-name small { font-family: var(--body); font-weight: 500; font-size: .8rem; color: var(--muted); }

/* ---------- One-stop / values ---------- */
.values-intro { color: var(--muted); max-width: 820px; margin: 0 auto 1.1rem; font-size: 1rem; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-top: 2.8rem; }
.value { text-align: center; }
.value .v-ico { width: 78px; height: 78px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin: 0 auto 1rem; transition: transform .25s ease; }
.value:hover .v-ico { transform: translateY(-4px); }
.value .v-ico svg { width: 38px; height: 38px; }
.value b { font-family: var(--head); font-weight: 800; font-size: 1.35rem; text-transform: uppercase; letter-spacing: .3px; }

/* ---------- Pink banner strip ---------- */
.banner-strip { background: var(--accent); text-align: center; padding: clamp(1.8rem, 4vw, 3rem) 22px; }
.banner-strip b { font-family: var(--anton); font-weight: 400; font-size: clamp(1.4rem, 3.6vw, 2.7rem); color: #fff; text-transform: uppercase; letter-spacing: .5px; line-height: 1.1; display: block; max-width: 24ch; margin: 0 auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-copy h2 { font-family: var(--anton); font-weight: 400; font-size: clamp(2.1rem, 4.4vw, 3.2rem); text-transform: uppercase; margin-bottom: 1rem; }
.contact-copy > p { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: .8rem; color: var(--ink); font-weight: 500; }
.contact-list svg { width: 22px; height: 22px; fill: var(--accent); flex-shrink: 0; }
.contact-list a:hover { color: var(--accent); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; display: grid; gap: 1.1rem; box-shadow: var(--shadow); }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink); font-family: var(--body); font-size: 1rem; padding: .75rem .9rem; width: 100%; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(236,30,140,.2); }
.field textarea { resize: vertical; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(236,30,140,.2); }
.form-status { margin: 0; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: var(--accent); }
.form-fineprint { margin: 0; color: var(--muted); font-size: .8rem; text-align: center; }
.contact-map { margin-top: 2.4rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); color: var(--muted); padding-top: 3.5rem; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.site-footer::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(125% 125% at 50% 8%, transparent 45%, rgba(236,30,140,.07) 100%); }
.site-footer > * { position: relative; z-index: 1; }
.brand-light .brand-text { color: var(--ink); }
.footer-top { padding-bottom: 2.5rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 1.2rem; }
.footer-col { text-align: center; overflow-wrap: break-word; min-width: 0; }
.footer-col h4 { font-family: var(--head); font-size: 1.05rem; letter-spacing: .5px; text-transform: uppercase; color: var(--ink); margin: 0 0 1rem; padding-bottom: .55rem; border-bottom: 2px solid var(--accent-soft); display: inline-block; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-col li { font-size: .95rem; color: var(--muted); }
.footer-col a { color: var(--ink); font-weight: 600; }
.footer-col a:hover { color: var(--accent); }
.footer-col .mt { margin-top: .6rem; }
.footer-center { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .9rem; padding: 1rem 0 1.6rem; }
.footer-brand-center { justify-content: center; }
.footer-brand-center .brand-text { font-size: 1.8rem; }
.footer-center p { max-width: 30rem; margin: 0; color: var(--muted); }
.footer-ida { margin-top: .2rem; display: inline-flex; padding: 8px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.footer-ida img { display: block; max-width: 120px; border-radius: 8px; }
.socials { display: flex; flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: .3rem; }
.socials a { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); font-weight: 600; font-size: .9rem; padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--soft); transition: color .2s, border-color .2s, background .2s; }
.socials a svg { flex-shrink: 0; }
.socials a:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
/* Interactive hover-reveal watermark (vanilla port of TextHoverEffect) */
.footer-watermark-wrap { padding: .2rem 8px; }
.hover-text { display: block; width: 100%; height: clamp(58px, 15vw, 168px); user-select: none; }
.hover-text text { font-family: var(--anton); font-size: 122px; fill: transparent; text-transform: uppercase; }
.ht-base   { stroke: #cfc9d6; stroke-width: .9; opacity: 0; transition: opacity .3s ease; }
.ht-draw   { stroke: var(--accent); stroke-width: .9; opacity: 0; transition: opacity 1.2s ease; }
.hover-text.drawn .ht-draw { opacity: .32; }
.ht-reveal { stroke: url(#htGradient); stroke-width: 1.9; opacity: 0; transition: opacity .25s ease; }
.hover-text.hovered .ht-base   { opacity: .55; }
.hover-text.hovered .ht-draw   { opacity: .12; }
.hover-text.hovered .ht-reveal { opacity: 1; }
.footer-bottom { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: .3rem; padding: 1.3rem 0 88px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--muted); }
.footer-bottom p { margin: 0; }
@media (min-width: 761px) {
  .footer-top { display: grid; grid-template-columns: minmax(0,1.1fr) auto auto auto; align-items: start; gap: 2.4rem; padding-bottom: 3rem; }
  .footer-center { order: 0; align-items: flex-start; text-align: left; padding: 0; gap: 1.1rem; max-width: 30rem; }
  .footer-center p { text-align: left; max-width: 26rem; }
  .footer-brand-center { justify-content: flex-start; }
  .footer-center .brand-text small { margin-top: 4px; }
  .footer-center .socials { flex-direction: row; align-items: center; gap: .7rem; margin-top: .2rem; }
  .footer-cols { display: contents; }
  .fc-nap, .fc-links, .fc-areas { text-align: left; }
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .2s; }
.whatsapp-fab:hover { transform: scale(1.08); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .transform-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .services-grid, .gallery-groups { grid-template-columns: 1fr 1fr; }
  .testimonial { flex-basis: 46%; }
}
@media (max-width: 760px) {
  .site-header { padding: 12px 14px; }
  .header-inner { justify-content: space-between; gap: .5rem; height: 56px; padding: 0 .6rem 0 .8rem; }
  .brand { min-width: 0; flex-shrink: 1; }
  .brand-logo { height: 32px; }
  .nav { display: none; }
  .nav-toggle { display: none; }
  .header-phone .phone-txt { display: none; }
  .phone-ico { width: 36px; height: 36px; }
  .header-right { margin-left: 0; gap: .5rem; flex-shrink: 0; }
  .header-quote { display: inline-flex; padding: .5rem .9rem; font-size: .9rem; }
  .q-full { display: none; }
  .q-short { display: inline; }
  .hero-content { padding-bottom: 6.5rem; }
  .hero-cta-mobile { display: inline-flex; }
  .hero-cta-desktop { display: none; }
  .ba-select { display: grid; grid-template-columns: 1fr 1fr; }
  .ba-meta p { min-height: 3.2em; }
  .transform-actions { display: flex; flex-wrap: nowrap; justify-content: center; gap: .7rem; }
  .transform-actions .btn { padding: .7rem 1rem; font-size: .92rem; white-space: nowrap; }
  .main-services { grid-template-columns: 1fr; }
  .services-grid, .gallery-groups { grid-template-columns: 1fr; }
  .testimonial { flex-basis: 80%; }
  .statbar-inner { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }
  .footer-col h4 { font-size: .92rem; letter-spacing: .2px; }
  .footer-col li { font-size: .82rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
