/* ==========================================================================
   Happy CarWash — Design system + styles
   Palette: black/white foundation, sophisticated automotive green accent,
   red used sparingly for the "non-stop" emphasis only.
   ========================================================================== */

:root {
  /* Foundation */
  --black: #0A0A0A;
  --ink-900: #0E1113;
  --ink-800: #14181B;
  --ink-700: #1B2024;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --white: #FFFFFF;
  --paper: #F5F6F4;
  --paper-2: #ECEFEA;

  /* Text */
  --text: #ECEFEE;
  --text-soft: rgba(236, 239, 238, 0.72);
  --text-mut: rgba(236, 239, 238, 0.52);
  --text-dark: #0E1113;
  --text-dark-soft: #464B4E;

  /* Accents */
  --green: #17A673;         /* sophisticated automotive green */
  --green-600: #12905F;
  --green-700: #0E7A50;
  --green-glow: rgba(23, 166, 115, 0.35);
  --red: #E11D2A;           /* accent — availability / emphasis */
  --red-bright: #FF3B47;    /* red text on dark surfaces */
  --red-glow: rgba(225, 29, 42, 0.32);

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow: 0 18px 40px -22px rgba(0,0,0,.7);
  --shadow-lg: 0 40px 80px -30px rgba(0,0,0,.75);
  --shadow-green: 0 20px 40px -18px var(--green-glow);

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 9vw, 128px);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------------------------- Reset ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 200;
  background: var(--green); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--green);
  margin-bottom: 14px;
}
.muted { color: var(--text-mut); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-soft); }

/* ---------------------------- Buttons ---------------------------- */
.btn {
  --bg: var(--green);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease), color .2s var(--ease);
}
.btn svg { transition: transform .3s var(--ease); }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-sm { padding: 10px 16px; font-size: .9rem; }

.btn-primary { background: var(--green); color: #04140D; box-shadow: var(--shadow-green); }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 26px 50px -18px var(--green-glow); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: rgba(255,255,255,.05); color: var(--text);
  border-color: var(--line-strong); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); transform: translateY(-2px); }

/* ---------------------------- Pills ---------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .02em; padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,.05);
  color: var(--text);
}
/* Availability badge — red identity, appears across the site */
.pill-live {
  border-color: rgba(225, 29, 42, .45);
  background: rgba(225, 29, 42, .12);
  color: #fff;
}
.pill-live > span:not(.dot) { color: #FFE3E5; }
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(225,29,42,.6); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(225,29,42,.55); }
  70% { box-shadow: 0 0 0 9px rgba(225,29,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,29,42,0); }
}
@media (prefers-reduced-motion: reduce) { .pill .dot { animation: none; } }

/* ---------------------------- Header / Nav ---------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 140;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,.72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 12px; position: relative; z-index: 130; min-width: 0; overflow: hidden; }
.brand-mark {
  flex: none;
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-accent { color: var(--green); }

/* Right-side actions: language switch + hamburger */
.nav-actions { display: flex; align-items: center; gap: 12px; position: relative; z-index: 130; flex: none; }
.lang-switch {
  display: inline-flex; padding: 3px; gap: 2px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,.05);
}
.lang-switch button {
  font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .03em;
  color: var(--text-soft); padding: 6px 12px; border-radius: 999px; border: 0;
  background: transparent; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-switch button.active { background: var(--green); color: #04140D; }
.lang-switch button:not(.active):hover { color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a {
  font-weight: 500; font-size: .95rem; color: var(--text-soft);
  padding: 9px 13px; border-radius: 8px; transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links > a:hover, .nav-links > a.active { color: var(--white); background: rgba(255,255,255,.06); }
.nav-cta {
  margin-left: 8px; background: var(--green); color: #04140D !important;
  font-family: var(--font-display); font-weight: 600;
  padding: 10px 18px !important; border-radius: 999px !important;
  box-shadow: var(--shadow-green);
}
.nav-cta:hover { background: var(--green-600) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.05); border-radius: 12px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  position: relative; z-index: 130;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.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); }

/* Scrim: full-screen dim behind the drawer. Never shown on desktop
   (the drawer only exists at <=860px, and body.nav-open is set there). */
.nav-scrim {
  position: fixed; inset: 0; z-index: 110; background: rgba(5, 6, 6, .62);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  /* Off-canvas drawer. Slides from the right, fully opaque, GPU-composited
     (transform + opacity only) so there is no flicker on open/close. */
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 4px; padding: calc(74px + 26px) 20px 32px;
    background: var(--ink-900); border-left: 1px solid var(--line);
    z-index: 120; box-shadow: -30px 0 60px -30px rgba(0, 0, 0, .85);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); will-change: transform;
    transition: transform .38s var(--ease);
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links > a { padding: 15px 14px; font-size: 1.06rem; border-radius: 10px; }
  .nav-links > a:not(.nav-cta) + a:not(.nav-cta) { border-top: 1px solid var(--line); border-radius: 0; }
  .nav-cta { margin: 14px 0 0; text-align: center; justify-content: center; }
  /* IMPORTANT: a backdrop-filter on the header would make it the containing
     block for the fixed drawer/scrim (children of <header>), clipping them to
     the header's height. So on mobile we use a solid background and NO
     backdrop-filter, keeping the drawer/scrim relative to the viewport. */
  .site-header.scrolled {
    background: rgba(10, 10, 10, .94);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  body.nav-open .site-header {
    background: rgba(10, 10, 10, .96);
    -webkit-backdrop-filter: none; backdrop-filter: none;
    border-bottom-color: var(--line);
  }
  body.nav-open { overflow: hidden; }
}

/* ---------------------------- Hero ---------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
  background: radial-gradient(120% 90% at 70% 10%, #14211d 0%, #0A0A0A 60%);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.45) 40%, rgba(10,10,10,.82) 100%),
    linear-gradient(90deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.25) 55%, rgba(10,10,10,.55) 100%);
}
.hero-content { padding-top: 96px; padding-bottom: 120px; max-width: 780px; }

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.1rem); font-weight: 800;
  margin: 20px 0 22px; letter-spacing: -.03em;
  text-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-soft); max-width: 60ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 5vw, 54px);
  margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line);
}
.hero-facts dt { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mut); margin-bottom: 4px; }
.hero-facts dd { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.hero-facts div:first-child dd { color: var(--red-bright); }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--line-strong); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 8px; z-index: 2;
}
.hero-scroll span { width: 4px; height: 8px; border-radius: 3px; background: var(--white); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll span, .hero-scroll { animation: none; } .hero-scroll { display: none; } }

/* ---------------------------- Sections ---------------------------- */
.section { padding-block: var(--section-y); position: relative; }
.section-head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section-head h2::after {
  content: ""; display: block; width: 54px; height: 3px; margin: 18px auto 0;
  border-radius: 2px; background: var(--red);
  box-shadow: 0 6px 18px -4px var(--red-glow);
}
.section-sub { margin-top: 14px; color: var(--text-soft); font-size: 1.05rem; }

/* Intro */
.intro { background: linear-gradient(180deg, var(--black), var(--ink-900)); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.intro-title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 20px; }
.intro-title + .lead { margin-bottom: 16px; }
.intro-list { display: grid; gap: 14px; }
.intro-list li {
  display: flex; gap: 16px; padding: 18px; border: 1px solid var(--line);
  border-radius: var(--radius); background: rgba(255,255,255,.02);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.intro-list li:hover { border-color: var(--green); transform: translateX(4px); background: rgba(23,166,115,.05); }
.intro-list .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(23,166,115,.12); color: var(--green); }
.intro-list .ic svg { width: 22px; height: 22px; }
.intro-list strong { font-family: var(--font-display); font-size: 1.02rem; }
.intro-list p { color: var(--text-mut); font-size: .93rem; margin-top: 2px; }

/* Services */
.services { background: #ffffff; }
.svc-group + .svc-group { margin-top: clamp(36px, 5vw, 56px); }
.svc-group-title { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; font-size: 1.05rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); }
.svc-group-title span { color: var(--green); }
.svc-group-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  position: relative; padding: 30px 26px; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  overflow: hidden; transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(23,166,115,.14), transparent 70%);
  transition: opacity .35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-lg); }
.svc-card:hover::before { opacity: 1; }
.svc-ic {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: rgba(23,166,115,.1); color: var(--green); margin-bottom: 20px;
  border: 1px solid rgba(23,166,115,.2);
}
.svc-ic svg { width: 30px; height: 30px; }
.svc-card h4 { font-size: 1.25rem; margin-bottom: 10px; }
.svc-card p { color: var(--text-mut); font-size: .96rem; }

/* Services highlights — real-photo feature cards */
.svc-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.hl-card {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.hl-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.hl-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.12) 0%, rgba(10,10,10,.15) 38%, rgba(10,10,10,.9) 100%);
}
.hl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.hl-card:hover img { transform: scale(1.07); }
.hl-body { position: absolute; inset: auto 0 0 0; z-index: 1; padding: 26px 24px; }
.hl-ic {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: var(--green); color: #04140D; margin-bottom: 14px;
  box-shadow: 0 10px 24px -8px var(--green-glow);
}
.hl-ic svg { width: 24px; height: 24px; }
.hl-body h3 {
  color: #fff; font-size: clamp(1.15rem, 2.1vw, 1.4rem); line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}

@media (max-width: 860px) {
  .svc-highlights { grid-template-columns: 1fr; gap: 16px; }
  .hl-card { aspect-ratio: 16 / 10; }
}

/* How it works */
.how { background: linear-gradient(180deg, var(--ink-900), var(--black)); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative; padding: 30px 24px; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: rgba(255,255,255,.02);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.step:hover { transform: translateY(-5px); border-color: var(--red); }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem;
  line-height: 1; color: transparent; -webkit-text-stroke: 1.4px var(--red-bright);
  display: block; margin-bottom: 16px; opacity: .95;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--text-mut); font-size: .93rem; }

/* Pricing */
.pricing { background: #ffffff; }
.pricing-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.pricing-title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
.check-list { display: grid; gap: 12px; margin: 24px 0 30px; }
.check-list li { display: flex; align-items: center; gap: 12px; color: var(--text-soft); }
.check-list li::before {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(23,166,115,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317A673' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.price-card {
  position: relative; text-align: center; padding: 44px 34px;
  border: 1px solid var(--line-strong); border-top: 3px solid var(--red);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(90% 60% at 50% 0%, rgba(225,29,42,.16), transparent 65%);
}
.price-card > * { position: relative; z-index: 1; }
.price-card-top { margin-bottom: 26px; }
.price-value { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.price-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(4.5rem, 12vw, 6.5rem); line-height: .9; letter-spacing: -.04em; }
.price-cur { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--red-bright); }
.price-unit { font-family: var(--font-display); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .95rem; color: var(--text-soft); margin-top: 12px; }
.price-note { color: var(--text-mut); margin-top: 6px; }
.price-divider { height: 1px; background: var(--line); margin: 26px 0; }
.price-foot { color: var(--text-soft); font-size: .95rem; }

/* Gallery */
.gallery { background: var(--ink-900); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); cursor: pointer; background: var(--ink-700);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.55));
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 2; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 50%; color: #fff;
  background: rgba(10,10,10,.5); border: 1px solid var(--line-strong);
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-item:hover .zoom { opacity: 1; transform: translateY(0); }
.gallery-ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-800));
  color: var(--text-mut);
}
.gallery-ph svg { width: 40px; height: 40px; opacity: .5; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(5,6,6,.92); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
  padding: 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(94vw, 1200px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-btn {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid var(--line-strong);
  color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox-btn:hover { background: rgba(255,255,255,.18); transform: scale(1.06); }
.lightbox-btn svg { width: 22px; height: 22px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* Location */
.location { background: linear-gradient(180deg, var(--ink-900), var(--black)); }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.loc-address { font-style: normal; font-size: 1.15rem; line-height: 1.7; margin: 18px 0 18px; }
.loc-address strong { font-family: var(--font-display); font-size: 1.35rem; }
.loc-hours { margin-bottom: 16px; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.map-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; background: var(--ink-800);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05); }
.map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 14px; color: var(--text-mut); }
.map-pin {
  width: 26px; height: 26px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--green); box-shadow: 0 8px 20px -6px var(--green-glow);
}
.map-pin::after { content: ""; position: absolute; inset: 8px; background: var(--ink-900); border-radius: 50%; }

/* Footer */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 72px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .brand-name { font-size: 1.4rem; }
.footer-brand p { margin-top: 12px; max-width: 32ch; }
.footer-links h3, .footer-contact h3 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mut); margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; align-content: start; }
.footer-links a { color: var(--text-soft); width: fit-content; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--green); }
.footer-contact address { font-style: normal; color: var(--text-soft); line-height: 1.7; margin-bottom: 14px; }
.footer-contact .pill { margin-bottom: 16px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-block: 26px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--text-mut);
}

/* Sticky mobile CTA */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,.86); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.mobile-bar.show { transform: translateY(0); }
.mobile-bar-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 14px 10px; border-radius: 14px; border: 1px solid var(--line-strong);
}
.mobile-bar-btn.primary { background: var(--green); color: #04140D; border-color: transparent; }
.mobile-bar-btn.ghost { background: rgba(255,255,255,.05); color: var(--text); }

/* ---------------------------- Reveal animations ---------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.svc-grid .svc-card { transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ---------------------------- Responsive ---------------------------- */
@media (max-width: 980px) {
  .intro-grid, .pricing-grid, .location-grid { grid-template-columns: 1fr; }
  .location-grid { direction: ltr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  /* Keep the top bar uncluttered next to the language switch + hamburger */
  .brand-name { display: none; }
  /* ...but if the logo image is missing, keep the text wordmark as fallback */
  .brand.no-logo .brand-name { display: inline; }
  .nav-actions { gap: 8px; }
  .lang-switch button { padding: 6px 10px; }
}

@media (max-width: 640px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .svc-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .hero-facts { gap: 22px 34px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
}

/* ============================================================================
   MOTION & CURSOR INTERACTIONS
   Cursor "fire" glow + embers, spotlight cards, subtle 3D tilt, magnetic
   buttons, idle micro-movement, and a unique logo spin. The cursor-driven
   effects are enabled by fx.js only on fine-pointer, motion-OK devices.
   ============================================================================ */

/* --- Cursor ember / fire glow (follows pointer, flickers like flame) --- */
/* Root is positioned by JS (transform: translate). The flicker lives on the
   inner pseudo-layers so its scale animation never overrides the position. */
.cursor-fx {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px;
  margin: -210px 0 0 -210px; border-radius: 50%; pointer-events: none;
  z-index: 60; opacity: 0; mix-blend-mode: screen; will-change: transform, opacity;
  filter: blur(3px); transition: opacity .5s var(--ease);
}
.cursor-fx.on { opacity: 1; }
.cursor-fx::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at center,
              rgba(255,165,85,.22) 0%, rgba(232,40,48,.16) 34%, rgba(225,29,42,0) 70%);
  animation: fireFlicker 2.4s ease-in-out infinite;
}
.cursor-fx::after {
  content: ""; position: absolute; inset: 36%; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,220,150,.34), rgba(255,150,70,0) 72%);
  animation: fireFlicker 1.6s ease-in-out infinite reverse;
}
@keyframes fireFlicker {
  0%,100% { transform: scale(1);   opacity: 1;  }
  25%     { transform: scale(1.07);opacity: .8; }
  50%     { transform: scale(.95); opacity: 1;  }
  75%     { transform: scale(1.05);opacity: .86;}
}
.ember {
  position: fixed; z-index: 61; border-radius: 50%; pointer-events: none;
  mix-blend-mode: screen; will-change: transform, opacity;
  background: radial-gradient(circle at center, #ffd79a, #ff5a3c 58%, rgba(255,90,60,0) 74%);
}

/* --- Spotlight that follows the cursor inside cards (JS sets --mx/--my) --- */
.svc-card > *, .step > *, .intro-list li > * { position: relative; z-index: 1; }
.svc-card::before {
  z-index: 0;
  background: radial-gradient(280px circle at var(--mx,50%) var(--my,0%),
              rgba(23,166,115,.22), transparent 60%);
}
.step::before, .intro-list li::before {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit;
  opacity: 0; transition: opacity .35s var(--ease);
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%),
              rgba(23,166,115,.16), transparent 58%);
}
.step:hover::before, .intro-list li:hover::before { opacity: 1; }

/* --- Subtle 3D tilt on service cards (transform set inline by fx.js) --- */
.svc-card { transform-style: preserve-3d; }

/* --- Magnetic buttons + idle float --- */
.magnetic { transition: transform .3s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hero .pill-live { animation: floaty 5.5s ease-in-out infinite; }

/* --- Hero parallax layers (transform nudged by fx.js) --- */
.hero-content { transition: transform .3s var(--ease); }
.hero-video { transform: scale(1.04); transition: transform .5s var(--ease); }

/* --- Unique logo spin on click: wind-up, overshoot, settle + spark ring --- */
@keyframes logoSpin {
  0%   { transform: rotate(0deg)    scale(1);    }
  12%  { transform: rotate(-30deg)  scale(.9);   }
  55%  { transform: rotate(650deg)  scale(1.14); }
  78%  { transform: rotate(706deg)  scale(.97);  }
  100% { transform: rotate(720deg)  scale(1);    }
}
.brand { overflow: visible; }
.brand-mark.spinning { animation: logoSpin 1.05s cubic-bezier(.2,.75,.2,1); }
.brand-spark {
  position: absolute; left: 0; top: 50%; width: 48px; height: 48px; margin-top: -24px;
  border-radius: 50%; pointer-events: none; border: 2px solid var(--red); opacity: 0;
  transform: scale(.55);
}
.brand-spark.go { animation: sparkRing .85s var(--ease) forwards; }
@keyframes sparkRing {
  0%   { opacity: .9; transform: scale(.5);  border-color: var(--red);   }
  55%  { opacity: .4; border-color: var(--green); }
  100% { opacity: 0;  transform: scale(2.1); border-color: var(--green); }
}

/* ============================================================================
   MOBILE POLISH PASS
   ============================================================================ */
@media (hover: none) {
  /* Tap feedback for touch devices */
  .btn:active { transform: scale(.97); }
  .svc-card:active, .gallery-item:active, .step:active { transform: scale(.99); }
  .mobile-bar-btn:active { transform: scale(.97); }
}

@media (max-width: 640px) {
  .section-head { margin-bottom: 34px; }
  .price-card { padding: 36px 24px; }
  .price-num { font-size: clamp(4rem, 22vw, 5rem); }
  .svc-card { padding: 26px 22px; }
  .intro-list li { padding: 16px; }
  .loc-actions .btn, .hero-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 92px; padding-bottom: 104px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-facts { width: 100%; gap: 18px 26px; }
  .hero-facts dd { font-size: 1.35rem; }
  .btn-lg { padding: 15px 22px; }
  .section { padding-block: clamp(56px, 14vw, 80px); }
  .loc-actions { flex-direction: column; }
  .loc-actions .btn { width: 100%; }
  .map-wrap { aspect-ratio: 1 / 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================================
   LIGHT SECTIONS — Services + Pricing on white background
   The site is dark-themed, so on the white "servicii" and "preturi" sections
   we flip text, borders and card surfaces to dark-on-light equivalents.
   ============================================================================ */
.services .section-head h2,
.pricing .pricing-title { color: var(--text-dark); }

.services .section-sub,
.pricing .lead { color: var(--text-dark-soft); }

/* Group titles (Exterior / Interior) */
.services .svc-group-title { color: #5a6066; }
.services .svc-group-title::after { background: rgba(10, 10, 10, .12); }

/* Service cards */
.services .svc-card {
  background: linear-gradient(180deg, #ffffff, #f6f7f5);
  border-color: rgba(10, 10, 10, .10);
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, .28);
}
.services .svc-card:hover {
  border-color: rgba(10, 10, 10, .20);
  box-shadow: 0 26px 50px -24px rgba(0, 0, 0, .30);
}
.services .svc-card h4 { color: var(--text-dark); }
.services .svc-card p { color: var(--text-dark-soft); }

/* Highlight photo cards keep their own overlays; just firm up the edge */
.services .hl-card { border-color: rgba(10, 10, 10, .12); }

/* Pricing left column */
.pricing .check-list li { color: var(--text-dark-soft); }
/* (The price card stays dark on purpose — it pops against the white section.) */
