@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,500&family=Montserrat:wght@400;500;600;700&family=Great+Vibes&display=swap');

/* ==========================================================================
   Luxe Clean — design tokens
   Ported from the "Lux Cleaning" design system.
   ========================================================================== */
:root {
  /* colors */
  --onyx: #0B0B0B;
  --pure-black: #000000;
  --gold: #C6A15D;
  --gold-shadow: #8A6A3B;
  --gold-mid: #C9A860;
  --gold-highlight: #F2DCA0;
  --diamond-pink: #F2A0BD;
  --rose: #B24063;
  --deep-berry: #7A1E38;
  --ivory: #F7F3ED;
  --white: #FFFFFF;
  --champagne: #E8DCC0;
  --warm-grey: #6E645A;
  --smoke: #1A1A1A;

  --text-on-light-primary: var(--pure-black);
  --text-on-light-secondary: var(--warm-grey);
  --border-hairline: rgba(198, 161, 93, .35);

  --gradient-gold: linear-gradient(135deg, var(--gold-shadow), var(--gold-mid) 55%, var(--gold-highlight));
  --gradient-rose-berry: linear-gradient(120deg, var(--rose), var(--deep-berry));

  /* typography */
  --font-display: 'Cinzel', Georgia, serif;
  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container-max: 1200px;
  --gutter: 24px;

  /* effects */
  --shadow-card-light: 0 1px 2px rgba(11, 11, 11, .04), 0 8px 24px rgba(11, 11, 11, .08);
  --shadow-card-dark: 0 1px 0 rgba(255, 255, 255, .04) inset, 0 12px 28px rgba(0, 0, 0, .45);
  --glow-rose-active: 0 6px 24px rgba(178, 64, 99, .55), 0 2px 8px rgba(178, 64, 99, .35);
  --ease-standard: cubic-bezier(.22, 1, .36, 1);
  --duration-fast: 150ms;
  --duration-medium: 260ms;
  --blur-glass: 12px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* keep anchored sections clear of the sticky header */
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  font-family: var(--font-body);
  color: var(--text-on-light-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--deep-berry); }

img { max-width: 100%; }

h1, h2, h3 { margin: 0; }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  background: var(--rose);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: top var(--duration-fast) var(--ease-standard);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ==========================================================================
   Shared building blocks
   ========================================================================== */
.container { max-width: 1100px; margin: 0 auto; }
.container--wide { max-width: var(--container-max); }
.container--narrow { max-width: 1000px; }

.section { padding: 88px var(--gutter); }
.section--light { background: var(--ivory); }
.section--white { background: #fff; border-top: 1px solid var(--border-hairline); }
.section--dark { background: var(--onyx); }

.section-head { text-align: center; margin-bottom: 56px; }

.diamond { color: var(--gold); font-size: 18px; line-height: 1; margin-bottom: 10px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--deep-berry);
  margin-bottom: 12px;
}
.eyebrow--on-dark { color: var(--diamond-pink); }

.section-title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--onyx);
}
.section-title--display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: .09em;
  color: var(--gold);
}
.section-title--sm { font-size: clamp(1.5rem, 2.5vw, 2rem); }

/* --- buttons --------------------------------------------------------------- */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background var(--duration-fast) var(--ease-standard);
}
.btn-wa:hover, .btn-wa:focus-visible { background: var(--deep-berry); color: #fff; }
.btn-wa svg { flex: 0 0 auto; }

.btn-wa--sm {
  gap: 8px;
  font-size: 13.5px;
  padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(178, 64, 99, .35);
}
.btn-wa--lg { font-size: 16px; padding: 16px 34px; }
.btn-wa--xl { font-size: 16.5px; padding: 17px 38px; }

/* soft rose glow behind the primary CTAs */
.btn-glow { position: relative; display: inline-block; }
.btn-glow::before {
  content: "";
  position: absolute;
  inset: 6px -4px -6px -4px;
  background: var(--gradient-rose-berry);
  filter: blur(14px);
  opacity: .55;
  border-radius: var(--radius-pill);
  pointer-events: none;
}
.btn-glow--strong::before { filter: blur(16px); opacity: .7; }
.btn-glow > .btn-wa { position: relative; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--onyx);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold);
  transition: background var(--duration-fast) var(--ease-standard);
}
.btn-outline:hover, .btn-outline:focus-visible { background: rgba(198, 161, 93, .12); color: var(--onyx); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(247, 243, 237, .92);
  -webkit-backdrop-filter: blur(var(--blur-glass));
  backdrop-filter: blur(var(--blur-glass));
  border-bottom: 1px solid rgba(198, 161, 93, .4);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  row-gap: 6px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--onyx); }
.brand:hover { color: var(--onyx); }
.brand__mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: block;
  object-fit: cover;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .09em;
  color: var(--onyx);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 12px 22px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.main-nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--warm-grey);
  transition: color var(--duration-fast) var(--ease-standard);
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--deep-berry); }

.header-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }

.lang-switch {
  display: flex;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex: 0 0 auto;
}
.lang-switch button {
  padding: 7px 14px;
  border: 0;
  background: transparent;
  color: var(--warm-grey);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard);
}
.lang-switch button:hover { color: var(--deep-berry); }
.lang-switch button[aria-pressed="true"] { background: var(--rose); color: #fff; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--ivory);
  padding: 88px var(--gutter) 72px;
  text-align: center;
}
.hero__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero__diamond { color: var(--gold); font-size: 20px; line-height: 1; }
.hero .eyebrow { margin-top: -12px; margin-bottom: 0; }
.hero__title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.08;
  color: var(--onyx);
  text-wrap: balance;
}
.hero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--warm-grey);
  max-width: 620px;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--rose);
  margin-top: 4px;
  line-height: 1.3;
}

/* ==========================================================================
   Why Luxe (pillars)
   ========================================================================== */
.pillars { background: var(--ivory); padding: 0 var(--gutter) 80px; }
.pillars__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-card-light);
}
.pillar__icon { flex: 0 0 auto; color: var(--gold); line-height: 0; }
.pillar__icon svg { width: 30px; height: 30px; display: block; }
.pillar__body { display: flex; flex-direction: column; gap: 6px; }
.pillar__title { font-weight: 700; font-size: .98rem; color: var(--onyx); }
.pillar__desc { font-size: .88rem; line-height: 1.55; color: var(--warm-grey); text-wrap: pretty; }

/* ==========================================================================
   Services
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--ivory);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--duration-medium) var(--ease-standard),
              box-shadow var(--duration-medium) var(--ease-standard);
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 11, 11, .12);
}
.service-card__icon { color: var(--gold); line-height: 0; }
.service-card__icon svg { width: 34px; height: 34px; display: block; }
.service-card__title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--onyx);
}
.service-card__desc {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--warm-grey);
  text-wrap: pretty;
}
.service-card__cta {
  margin-top: auto;
  padding-top: 6px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--rose);
}
.service-card__cta:hover { color: var(--deep-berry); }

/* ==========================================================================
   Gold marquee
   ========================================================================== */
.marquee {
  background: var(--onyx);
  border-top: 1px solid rgba(198, 161, 93, .3);
  border-bottom: 1px solid rgba(198, 161, 93, .3);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: lux-marquee 36s linear infinite;
}
.marquee__group {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-right: 40px;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .14em;
  color: var(--gold);
  white-space: nowrap;
}
.marquee__sep { color: var(--diamond-pink); }

@keyframes lux-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Before / After slider
   ========================================================================== */
.ba-frame {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(198, 161, 93, .45);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card-dark);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  background: var(--smoke);
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-layer--before { clip-path: inset(0 50% 0 0); }

.ba-tag {
  position: absolute;
  top: 16px;
  z-index: 3;
  background: rgba(11, 11, 11, .72);
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  white-space: nowrap;
  pointer-events: none;
}
.ba-tag--before { left: 16px; }
.ba-tag--after { right: 16px; }
.ba-tag b { font-weight: 700; font-size: 12.5px; letter-spacing: .1em; color: #fff; }
.ba-tag span { font-weight: 500; font-size: 11.5px; letter-spacing: .1em; color: var(--gold); }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 56px;
  transform: translateX(-28px);
  z-index: 4;
  cursor: ew-resize;
  border: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  touch-action: none;
}
.ba-handle__line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(198, 161, 93, .55), #C6A15D 20%, #F2DCA0 50%, #C6A15D 80%, rgba(198, 161, 93, .55));
  box-shadow: 0 0 14px rgba(198, 161, 93, .7);
}
.ba-handle__knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(11, 11, 11, .85);
  border: 2px solid var(--gold);
  box-shadow: 0 0 22px rgba(198, 161, 93, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: .06em;
}

.ba-note {
  text-align: center;
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  margin-top: 32px;
}

/* ==========================================================================
   How it works
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--deep-berry);
  background: #fff;
  box-shadow: var(--shadow-card-light);
}
.step__title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--onyx);
}
.step__desc {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--warm-grey);
  max-width: 280px;
  text-wrap: pretty;
}

/* ==========================================================================
   Service area
   ========================================================================== */
.area { background: var(--ivory); padding: 72px var(--gutter); text-align: center; }
/* "How It Works" (directly above) shares the same ivory background — without
   testimonials between them there's nothing to mark where one section ends
   and the next begins, so add back a hairline. */
.area--divided { border-top: 1px solid var(--border-hairline); }
.area__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.area .eyebrow { margin-top: -8px; margin-bottom: 0; }
.area__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--warm-grey);
  max-width: 520px;
  text-wrap: pretty;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta { background: var(--onyx); padding: 96px var(--gutter); text-align: center; }
.final-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-cta__mark {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: block;
  object-fit: cover;
}
.final-cta__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
  max-width: 520px;
  text-wrap: pretty;
}
.final-cta__call {
  color: var(--gold);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
}
.final-cta__call:hover { color: var(--gold-highlight); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--pure-black);
  /* extra bottom padding keeps the footer text clear of the floating
     WhatsApp button once the visitor reaches the end of the page */
  padding: 40px var(--gutter) 100px;
  border-top: 1px solid rgba(198, 161, 93, .3);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .09em;
  color: var(--gold);
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, .7); font-size: .85rem; }
.footer-links a:hover { color: var(--gold); }
.footer-note { color: rgba(255, 255, 255, .4); font-size: .78rem; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--glow-rose-active);
  transition: background var(--duration-fast) var(--ease-standard);
}
.wa-float:hover, .wa-float:focus-visible { background: var(--deep-berry); color: #fff; }

/* ==========================================================================
   Scroll reveal — only armed once JS is running
   ========================================================================== */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease-standard), transform 600ms var(--ease-standard);
}
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Below this the brand + nav + actions no longer fit on one row, so the nav
   drops to a full-width centred row of its own instead of shunting the
   language switch and CTA onto a ragged second line. */
@media (max-width: 1040px) {
  .main-nav { order: 3; flex-basis: 100%; }
  .header-inner { justify-content: space-between; }
}

@media (max-width: 640px) {
  .section { padding: 64px var(--gutter); }
  .hero { padding: 64px var(--gutter) 56px; }
  .final-cta { padding: 72px var(--gutter); }
  .section-head { margin-bottom: 40px; }
  .brand__mark { width: 44px; height: 44px; }
  .brand__name { font-size: 17px; }
  .header-inner { padding: 10px 16px; }
  .main-nav { gap: 10px 16px; }
  .hero__actions { gap: 14px; }
  .btn-wa--lg, .btn-wa--xl { padding: 15px 28px; font-size: 15.5px; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; gap: 18px; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* On phones the wordmark, language switch and CTA no longer share a row, and
   the sticky header grows tall enough to eat the viewport. The logo already
   contains the words "LUXE CLEAN", so drop the text lockup and let the top
   row stay on one line. */
@media (max-width: 560px) {
  .brand__name { display: none; }
  .header-inner { padding: 8px 16px; }
  .brand__mark { width: 40px; height: 40px; }
  .main-nav { gap: 8px 14px; }
  .main-nav a { font-size: 11.5px; letter-spacing: .06em; }
  html { scroll-padding-top: 130px; }

  /* the two bilingual pills collide inside a phone-width frame */
  .ba-tag { top: 12px; padding: 5px 10px; }
  .ba-tag--before { left: 10px; }
  .ba-tag--after { right: 10px; }
  .ba-tag b { font-size: 10.5px; letter-spacing: .06em; }
  .ba-tag span { font-size: 9.5px; letter-spacing: .06em; }
}

@media (max-width: 400px) {
  .header-actions { gap: 10px; }
  .btn-wa--sm { padding: 9px 14px; font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}

@media print {
  .site-header, .wa-float, .marquee { display: none; }
  body { background: #fff; }
}
