/* ═══════════════════════════════════════════════
   FLOOR CANDY — Shared Design System
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:        #0A0A0A;
  --surface:   #141414;
  --surface-2: #1C1C1C;
  --pink:      #E8157A;
  --gold:      #FF8C00;
  --white:     #F0F0F0;
  --muted:     #666666;
  --border:    #242424;
  --gradient:  linear-gradient(135deg, #E8157A 0%, #FF8C00 100%);
  --glow:      0 0 40px rgba(232,21,122,0.25);
  --glow-lg:   0 0 70px rgba(232,21,122,0.35);
  --radius:    8px;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h:     72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); cursor: none; }
ul { list-style: none; }

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: normal;
}
.cursor.hover { width: 20px; height: 20px; opacity: 0.6; }
@media (hover: none) { .cursor { display: none; } body { cursor: auto; } button { cursor: pointer; } }

/* ── PAGE LOADER ── */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: loaderPulse 1.4s ease forwards;
}
.loader-logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
@keyframes loaderPulse {
  0%   { opacity: 0; transform: translateY(12px); }
  40%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ── SCROLL PROGRESS ── */
.scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 9998;
  height: 2px; width: 0%;
  background: var(--gradient);
  transition: width 0.05s linear;
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { margin-bottom: 56px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--pink); display: block; flex-shrink: 0; }
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.01em; line-height: 1.0;
}
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-center .eyebrow { margin: 0 auto 14px; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .loader { display: none; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: 100px; border: none; cursor: none;
  transition: all 0.22s; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: #f01e82; box-shadow: var(--glow); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(240,240,240,0.2); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-outline-pink { background: transparent; color: var(--pink); border: 1.5px solid var(--pink); }
.btn-outline-pink:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-xl { padding: 19px 48px; font-size: 15px; box-shadow: var(--glow-lg); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--pink);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-phone { font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 0.03em; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── MOBILE MENU ── */
.mob-menu {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(10,10,10,0.99);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.mob-menu.open { opacity: 1; visibility: visible; }
.mob-menu a {
  font-family: var(--font-head);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); transition: color 0.2s;
  opacity: 0; transform: translateY(20px);
  transition: color 0.2s, opacity 0.4s, transform 0.4s;
}
.mob-menu.open a { opacity: 1; transform: translateY(0); }
.mob-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mob-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mob-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mob-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mob-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mob-menu.open a:nth-child(6) { transition-delay: 0.3s; }
.mob-menu a:hover { color: var(--pink); }
.mob-divider { width: 1px; height: 1px; }
.mob-cta { margin-top: 24px !important; }

/* ── FOOTER ── */
footer {
  background: #060606;
  padding: 72px 0 32px;
  border-top: 1px solid transparent;
  border-image: var(--gradient) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-col-head {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: #4a4a4a; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; color: #4a4a4a; margin-bottom: 10px; line-height: 1.5; }
.footer-contact a { color: #4a4a4a; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bar {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bar p, .footer-bar a { font-size: 12px; color: #333; }
.footer-bar a:hover { color: var(--muted); }
.footer-bar-links { display: flex; gap: 24px; }

/* ── MOBILE STICKY BAR ── */
.mob-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 12px 20px; gap: 10px;
}
.mob-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 13px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.mob-call { background: var(--pink); color: #fff; }
.mob-quote { background: var(--surface-2); color: var(--white); border: 1px solid var(--border); }

/* ══════════════════════════════════
   HOMEPAGE
   ══════════════════════════════════ */

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #0a0a0a;
  will-change: transform;
}
.hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
}
.hero-bg video::-webkit-media-controls,
.hero-bg video::-webkit-media-controls-enclosure,
.hero-bg video::-webkit-media-controls-panel,
.hero-bg video::-webkit-media-controls-play-button,
.hero-bg video::-webkit-media-controls-start-playback-button,
.hero-bg video::-webkit-media-controls-overlay-play-button { display: none !important; opacity: 0 !important; }
.hero-bg video { opacity: 0; transition: opacity 0.6s ease; }
.hero-bg video.playing { opacity: 1; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.2) 100%);
}
.hero-wm {
  position: absolute; right: -2vw; bottom: -6vw;
  font-family: var(--font-head);
  font-size: 28vw; font-weight: 700; text-transform: uppercase;
  line-height: 0.85; letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.05; user-select: none; pointer-events: none; white-space: nowrap;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(240,240,240,0.55); margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 28px; height: 1px; background: var(--pink); display: block; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(52px, 8.5vw, 104px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 0.92;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px; color: rgba(240,240,240,0.65);
  line-height: 1.75; max-width: 440px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.trust-strip {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(240,240,240,0.5); font-weight: 500; letter-spacing: 0.04em; }
.trust-icon { color: var(--gold); font-size: 13px; }

/* ── SERVICE TEASER CARDS ── */
.svc-tease-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-tease-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.svc-tease-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.svc-tease-card:hover .svc-tease-img { transform: scale(1.05); }
.svc-tease-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}
.svc-tease-content { position: relative; z-index: 1; padding: 32px 28px; }
.svc-tease-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 8px;
}
.svc-tease-card h3 {
  font-family: var(--font-head); font-size: 26px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 10px; letter-spacing: 0.02em;
}
.svc-tease-card p { font-size: 13px; color: rgba(240,240,240,0.6); margin-bottom: 18px; line-height: 1.6; }
.arrow-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink); display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.arrow-link:hover { gap: 10px; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700; line-height: 1; margin-bottom: 10px; display: block;
}
.stat-suf { font-size: 0.6em; }
.stat-lbl { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }

/* ── FEATURED WORK ── */
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.work-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3; cursor: none;
}
.work-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.55s ease;
}
.work-item:hover .work-img { transform: scale(1.06); }
.work-ov {
  position: absolute; inset: 0;
  background: rgba(232,21,122,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s;
}
.work-item:hover .work-ov { background: rgba(232,21,122,0.2); }
.work-lbl {
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; opacity: 0; transform: translateY(8px);
  transition: all 0.3s;
}
.work-item:hover .work-lbl { opacity: 1; transform: translateY(0); }

/* ── WHY SECTION ── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.why-card {
  background: var(--surface); padding: 48px 40px;
  transition: background 0.25s;
}
.why-card:hover { background: var(--surface-2); }
.why-icon { font-size: 32px; margin-bottom: 20px; display: block; }
.why-card h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── PROCESS SECTION ── */
.process-section {
  position: relative; padding: 96px 0; overflow: hidden;
}
.process-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/fc2.jpg');
  background-size: cover; background-position: center;
}
.process-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,10,0.88);
}
.process-content { position: relative; z-index: 2; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 38px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(232,21,122,0.5) 0, rgba(232,21,122,0.5) 8px, transparent 8px, transparent 18px);
}
.p-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.p-num {
  font-family: var(--font-head); font-size: 52px; font-weight: 700; line-height: 1;
  margin-bottom: 16px; display: inline-block;
}
.p-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.p-step h3 {
  font-family: var(--font-head); font-size: 18px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
}
.p-step p { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover { border-color: rgba(232,21,122,0.35); box-shadow: var(--glow); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-card blockquote {
  font-size: 15px; color: var(--white); line-height: 1.8;
  font-style: italic; font-weight: 300; margin-bottom: 24px;
  position: relative;
}
.testi-card blockquote::before {
  content: '\201C'; color: var(--pink); font-size: 48px; font-style: normal;
  line-height: 0; vertical-align: -20px; margin-right: 4px;
}
.testi-name { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.testi-loc { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── HOMEPAGE CTA ── */
.cta-section {
  position: relative; text-align: center; padding: 120px 0; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(232,21,122,0.1) 0%, transparent 68%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700; text-transform: uppercase; line-height: 1.0;
  margin-bottom: 18px; position: relative;
}
.cta-section > .container > .cta-sub-text {
  font-size: 17px; color: var(--muted); margin-bottom: 44px; position: relative;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; position: relative; }
.cta-contact-line { font-size: 13px; color: var(--muted); position: relative; }
.cta-contact-line a { color: var(--muted); transition: color 0.2s; }
.cta-contact-line a:hover { color: var(--white); }

/* ══════════════════════════════════
   INNER PAGE HERO
   ══════════════════════════════════ */
.page-hero {
  position: relative; height: 52vh; min-height: 380px;
  display: flex; align-items: flex-end;
  padding-bottom: 56px;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 0.95; margin-top: 12px;
}

/* ══════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════ */
.svc-alt { background: var(--surface); }
.svc-detail-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.svc-detail-section:last-child { border-bottom: none; }
.svc-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.svc-detail-grid.reverse { direction: rtl; }
.svc-detail-grid.reverse > * { direction: ltr; }
.svc-detail-img {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail-img .img-placeholder {
  width: 100%; height: 100%; min-height: 300px;
}
.svc-detail-content h2 {
  font-family: var(--font-head); font-size: clamp(30px, 4vw, 44px);
  font-weight: 700; text-transform: uppercase; line-height: 1.0; margin-bottom: 16px;
}
.svc-detail-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.svc-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.svc-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(240,240,240,0.8); line-height: 1.5;
}
.bullet-dot { color: var(--pink); font-size: 16px; margin-top: 1px; flex-shrink: 0; }

/* ══════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════ */
.filter-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 100px; border: 1.5px solid var(--border);
  background: transparent; color: var(--muted);
  cursor: none; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--pink); color: var(--white); }
.filter-btn.active { background: var(--pink); border-color: var(--pink); color: #fff; }
.masonry-grid {
  columns: 3; column-gap: 14px;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 14px;
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: none;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-ov {
  position: absolute; inset: 0;
  background: rgba(232,21,122,0);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  transition: background 0.3s;
}
.masonry-item:hover .masonry-ov { background: rgba(232,21,122,0.22); }
.masonry-caption {
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: #fff;
  opacity: 0; transform: translateY(6px); transition: all 0.3s;
}
.masonry-item:hover .masonry-caption { opacity: 1; transform: translateY(0); }
.zoom-icon { font-size: 20px; opacity: 0; transition: opacity 0.3s 0.05s; }
.masonry-item:hover .zoom-icon { opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.lb-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 32px; color: var(--muted); cursor: none;
  transition: color 0.2s; line-height: 1; background: none; border: none;
}
.lb-close:hover { color: var(--white); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: var(--muted); cursor: none;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 50%; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, background 0.2s;
}
.lb-prev:hover, .lb-next:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 13px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}

/* ══════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; text-transform: uppercase; margin-bottom: 16px; line-height: 1.0;
}
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.contact-detail { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.contact-item-text h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 15px; color: var(--white); transition: color 0.2s; }
.contact-item-text a:hover { color: var(--pink); }
.trust-badges { display: flex; flex-direction: column; gap: 12px; padding-top: 32px; border-top: 1px solid var(--border); }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(240,240,240,0.6); }
.trust-badge-icon { color: var(--gold); }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 44px 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-head); font-size: 24px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 6px; padding: 13px 16px; font-family: var(--font-body);
  font-size: 14px; color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,21,122,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group select option { background: var(--surface-2); color: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success h3 { font-family: var(--font-head); font-size: 28px; text-transform: uppercase; margin-bottom: 12px; }
.form-success p { color: var(--muted); }
.form-success .success-icon { font-size: 48px; margin-bottom: 16px; display: block; }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-tease-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 280px); }
  .svc-tease-card { aspect-ratio: unset; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }
  .section { padding: 56px 0; }
  .hero { min-height: 100svh; }
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .trust-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; padding-top: 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .mob-bar { display: flex; }
  body { padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bar { flex-direction: column; text-align: center; }
  .masonry-grid { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .stats-band { padding: 48px 0; }
  .why-card { padding: 32px 24px; }
  .cta-section { padding: 80px 0; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { text-align: center; justify-content: center; }
  .section-heading { font-size: clamp(28px, 8vw, 48px); }
  .finish-grid { grid-template-columns: 1fr; }
  .est-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .svc-tease-grid { grid-template-rows: repeat(3, 240px); }
}
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

/* ══════════════════════════════════
   BEFORE / AFTER SLIDER
   ══════════════════════════════════ */
.ba-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ba-wrap { max-width: 900px; margin: 0 auto 16px; }
.ba-slider {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 16/9; cursor: ew-resize;
  user-select: none; -webkit-user-select: none; touch-action: none;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-label {
  position: absolute; bottom: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(6px);
  padding: 5px 12px; border-radius: 100px; color: #fff;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none; z-index: 10;
}
.ba-line-top, .ba-line-bot { flex: 1; width: 2px; background: rgba(255,255,255,0.9); box-shadow: 0 0 8px rgba(0,0,0,0.5); }
.ba-btn {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; box-shadow: var(--glow), 0 4px 20px rgba(0,0,0,0.4);
  border: 2.5px solid rgba(255,255,255,0.25);
}
.ba-note { text-align: center; font-size: 12px; color: #444; margin-top: 16px; }

/* ══════════════════════════════════
   WARRANTY BAND
   ══════════════════════════════════ */
.warranty-band {
  background: var(--surface);
  border-top: 1px solid rgba(232,21,122,0.25);
  border-bottom: 1px solid rgba(232,21,122,0.25);
  padding: 48px 0;
  position: relative; overflow: hidden;
}
.warranty-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,21,122,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.warranty-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
  position: relative;
}
.warranty-icon-wrap { flex-shrink: 0; }
.warranty-icon {
  font-size: 52px;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.warranty-content h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px;
}
.warranty-content p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 560px; }
.warranty-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.w-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(240,240,240,0.75); white-space: nowrap;
}
.w-badge-ico { color: var(--gold); font-size: 14px; }
@media (max-width: 768px) {
  .warranty-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .warranty-icon-wrap { display: none; }
  .warranty-badges { grid-template-columns: 1fr 1fr; justify-items: center; }
}

/* ══════════════════════════════════
   COST ESTIMATOR
   ══════════════════════════════════ */
.estimator-section { background: var(--bg); border-top: 1px solid var(--border); }
.est-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.est-content h2 { margin-bottom: 16px; }
.est-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.est-disclaimer {
  font-size: 12px; color: #3a3a3a; line-height: 1.7;
  border-left: 2px solid var(--border); padding-left: 14px;
}
.est-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
}
.est-field { margin-bottom: 28px; }
.est-field label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.est-options { display: flex; flex-wrap: wrap; gap: 8px; }
.est-opt {
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--muted); font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; cursor: none; transition: all 0.2s;
}
.est-opt:hover { border-color: var(--pink); color: var(--white); }
.est-opt.active { background: var(--pink); border-color: var(--pink); color: #fff; }
.est-sqm-wrap { position: relative; margin-bottom: 14px; }
.est-sqm-wrap input {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 6px; padding: 13px 52px 13px 16px;
  color: var(--white); font-size: 16px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.est-sqm-wrap input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,21,122,0.1); }
.est-unit {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: var(--muted); font-weight: 600; pointer-events: none;
}
.est-range {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 3px; background: var(--border); border-radius: 2px; outline: none; cursor: pointer;
}
.est-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  border-radius: 50%; background: var(--pink); cursor: pointer; box-shadow: var(--glow);
}
.est-range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--pink); border: none; box-shadow: var(--glow); }
.est-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: #3a3a3a; margin-top: 6px; }
.est-result {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 6px; padding: 24px; text-align: center;
}
.est-result-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.est-prices { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 6px; }
.est-price { font-family: var(--font-head); font-size: 36px; font-weight: 700; line-height: 1; }
.est-dash { font-size: 22px; color: var(--muted); }
.est-note { font-size: 12px; color: #3a3a3a; }
@media (max-width: 1024px) {
  .est-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 480px) { .est-card { padding: 24px 20px; } }

/* ══════════════════════════════════
   FINISH SELECTOR
   ══════════════════════════════════ */
.finish-section { background: var(--surface); border-bottom: 1px solid var(--border); }
.finish-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; margin-top: 56px; }
.finish-preview-img {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.finish-preview-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.25s ease;
}
.finish-preview-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  padding: 32px 20px 16px;
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.finish-swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.finish-swatch {
  position: relative; border-radius: 6px; overflow: hidden;
  aspect-ratio: 3/2; cursor: none;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.finish-swatch:hover { transform: scale(1.04); border-color: rgba(232,21,122,0.5); box-shadow: 0 0 20px rgba(232,21,122,0.2); }
.finish-swatch.active { border-color: var(--pink); box-shadow: 0 0 24px rgba(232,21,122,0.35); }
.finish-swatch span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.78); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 8px;
}
@media (max-width: 1024px) {
  .finish-grid { grid-template-columns: 1fr; }
  .finish-swatches { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .finish-swatches { grid-template-columns: repeat(2, 1fr); }
}
