@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --background: 270 22% 6%;
  --foreground: 300 12% 96%;
  --card: 272 20% 10%;
  --primary: 275 72% 64%;
  --primary-foreground: 272 30% 8%;
  --secondary: 330 68% 62%;
  --muted: 272 14% 15%;
  --muted-foreground: 285 10% 70%;
  --accent: 42 78% 58%;
  --accent-foreground: 272 30% 8%;
  --destructive: 0 72% 55%;
  --border: 275 16% 20%;
  --radius: 0.75rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; border-color: hsl(var(--border)); }

html { scroll-behavior: smooth; }

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; text-wrap: balance; line-height: 1.15; }
p { text-wrap: pretty; overflow-wrap: break-word; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.muted { color: hsl(var(--muted-foreground)); }
.eyebrow { color: hsl(var(--accent)); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.75rem; }
.section { padding: 6rem 0; }
.section--alt { background: hsl(var(--card) / 0.4); }
.section-head { max-width: 42rem; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
.section-head p { font-size: 1.125rem; color: hsl(var(--muted-foreground)); }

.lilac-gradient { background: linear-gradient(135deg, hsl(275 72% 60%) 0%, hsl(310 65% 58%) 100%); }
.rose-gradient { background: linear-gradient(135deg, hsl(330 68% 60%) 0%, hsl(275 70% 60%) 100%); }
.gold-gradient { background: linear-gradient(135deg, hsl(42 78% 58%) 0%, hsl(36 85% 68%) 100%); }
.text-gold-gradient { background: linear-gradient(135deg, hsl(42 84% 62%) 0%, hsl(30 88% 72%) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.text-lilac-gradient { background: linear-gradient(135deg, hsl(280 80% 72%) 0%, hsl(330 78% 70%) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.glow-lilac { box-shadow: 0 20px 60px -20px hsl(275 72% 60% / 0.55); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: var(--radius); font-weight: 700; font-size: 1.125rem; transition: opacity 0.2s ease, transform 0.15s ease, background-color 0.2s ease; }
.btn:hover { opacity: 0.9; }
.btn:active { transform: scale(0.97); }
.btn--gold { color: hsl(var(--accent-foreground)); }
.btn--lilac { color: hsl(var(--primary-foreground)); }
.btn--outline { border: 1px solid hsl(var(--primary) / 0.6); font-weight: 500; }
.btn--outline:hover { background: hsl(var(--primary) / 0.1); opacity: 1; }
.btn--light { background: hsl(var(--background)); color: hsl(var(--foreground)); font-weight: 600; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.top-banner { display: block; text-align: center; font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary-foreground)); padding: 0.625rem 1rem; }
.top-banner:hover { opacity: 0.9; }
.nav { background: hsl(var(--background) / 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid hsl(var(--border) / 0.6); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.brand { display: flex; align-items: center; gap: 0.5rem; font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 600; }
.brand__logo { width: 2rem; height: 2rem; border-radius: 9999px; object-fit: cover; }
.nav__links { display: none; align-items: center; gap: 1.75rem; }
.nav__links a, .nav__links button { font-size: 0.875rem; color: hsl(var(--muted-foreground)); transition: color 0.2s; }
.nav__links a:hover, .nav__links button:hover { color: hsl(var(--foreground)); }
.nav__toggle { color: hsl(var(--foreground)); display: flex; }
.nav__mobile { display: none; flex-direction: column; gap: 0.75rem; padding: 0 1.5rem 1rem; background: hsl(var(--background)); border-bottom: 1px solid hsl(var(--border)); font-size: 0.875rem; }
.nav__mobile.open { display: flex; }
.nav__mobile a, .nav__mobile > button { color: hsl(var(--muted-foreground)); text-align: left; }
.nav__mobile .btn { width: 100%; }
.sticky-header { position: sticky; top: 0; z-index: 50; background: hsl(var(--background) / 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid hsl(var(--border)); }

/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: hsl(var(--background) / 0.75); }
.hero__tint { position: absolute; inset: 0; background: linear-gradient(100deg, hsl(272 22% 6% / 0.95) 0%, hsl(272 22% 6% / 0.5) 55%, hsl(275 72% 60% / 0.25) 100%); }
.hero__content { position: relative; z-index: 1; padding: 8rem 0 5rem; }
.hero__inner { max-width: 40rem; display: flex; flex-direction: column; gap: 1.75rem; }
.hero h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
.hero h1 span { display: block; margin-top: 0.25rem; }
.hero__lead { font-size: 1.125rem; color: hsl(var(--muted-foreground)); max-width: 34rem; }
.hero__actions { display: flex; flex-direction: column; gap: 1rem; }
.stats { display: flex; flex-wrap: wrap; gap: 2rem; padding-top: 0.5rem; }
.stats strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.stats span { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

.page-hero { padding: 5rem 0; text-align: center; }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1.5rem; }
.page-hero .container { max-width: 48rem; }
.page-hero p { font-size: 1.125rem; color: hsl(var(--muted-foreground)); margin-bottom: 2rem; }
.page-hero__actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }

/* Grids & cards */
.grid { display: grid; gap: 1.5rem; }
.grid--4 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
.card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: 1.5rem; transition: border-color 0.2s; }
.card:hover { border-color: hsl(var(--primary) / 0.6); }
.card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.card__icon { width: 3rem; height: 3rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card__icon svg { color: hsl(var(--primary-foreground)); width: 1.5rem; height: 1.5rem; }
.card__step { font-size: 0.75rem; font-weight: 600; color: hsl(var(--accent)); margin-bottom: 0.5rem; }
.card__icon-plain { color: hsl(var(--accent)); width: 1.75rem; height: 1.75rem; margin-bottom: 1rem; }

.service { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid hsl(var(--border)); }
.service img { width: 100%; height: 18rem; object-fit: cover; transition: transform 0.5s ease; }
.service:hover img { transform: scale(1.05); }
.service__veil { position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.5), transparent); }
.service__body { position: absolute; bottom: 0; padding: 1.25rem; }
.service__body h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; }
.service__body p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

.showcase { border-radius: var(--radius); overflow: hidden; border: 1px solid hsl(var(--border)); background: hsl(var(--card)); }
.showcase img { width: 100%; height: 14rem; object-fit: cover; }
.showcase div { padding: 1.25rem; }
.showcase h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.showcase p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* Accelerate */
.accelerate { display: grid; gap: 3.5rem; align-items: center; }
.accelerate h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; margin-bottom: 1.25rem; }
.accelerate > div > p { font-size: 1.125rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }

/* Testimonials */
.quote-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: 1.75rem; }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: hsl(var(--accent)); }
.stars svg { width: 1rem; height: 1rem; fill: currentColor; stroke: none; }
.quote-card blockquote { font-style: italic; color: hsl(var(--foreground) / 0.9); margin-bottom: 1.25rem; }
.quote-card svg.quote { color: hsl(var(--primary)); width: 1.5rem; height: 1.5rem; margin-bottom: 0.75rem; }
.quote-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 2.5rem; height: 2.5rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: hsl(var(--primary-foreground)); }
.quote-author p { font-size: 0.875rem; font-weight: 600; }
.quote-author span { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* CTA */
.cta-box { border-radius: 1rem; border: 1px solid hsl(var(--border)); overflow: hidden; }
.cta-inner { padding: 2.5rem 1.5rem; text-align: center; }
.cta-inner h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; color: hsl(var(--primary-foreground)); margin-bottom: 1rem; }
.cta-inner > p { color: hsl(var(--primary-foreground) / 0.85); font-size: 1.125rem; max-width: 42rem; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.cta-hours { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: hsl(var(--primary-foreground) / 0.8); font-size: 0.875rem; margin-top: 1.5rem; }
.cta-hours svg { width: 1rem; height: 1rem; }

/* Footer */
.site-footer { border-top: 1px solid hsl(var(--border)); background: hsl(var(--card) / 0.6); }
.site-footer .container { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid { display: grid; gap: 2.5rem; }
.site-footer h3 { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: hsl(var(--accent)); margin-bottom: 1rem; }
.site-footer p, .site-footer li { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer li { display: flex; align-items: flex-start; gap: 0.5rem; }
.site-footer li svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.25rem; color: hsl(var(--primary)); }
.site-footer li.gold svg { color: hsl(var(--accent)); }
.site-footer a:hover { color: hsl(var(--foreground)); }
.footer-fineprint { font-size: 0.75rem !important; margin-top: 1rem; }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.75rem; }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; display: flex; align-items: center; gap: 0.5rem; border-radius: 999px; padding: 0.875rem 1.25rem; color: hsl(var(--primary-foreground)); font-weight: 600; }
.wa-float:hover { opacity: 0.95; }
.wa-float span { display: none; }

/* Dialog */
.dialog-backdrop { position: fixed; inset: 0; z-index: 100; background: hsl(272 22% 3% / 0.8); display: none; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 1.5rem; }
.dialog-backdrop.open { display: flex; }
.dialog { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; max-width: 32rem; width: 100%; padding: 1.75rem; margin: auto; }
.dialog h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.dialog__desc { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.25rem; }
.dialog__close { position: absolute; top: 1rem; right: 1rem; color: hsl(var(--muted-foreground)); }
.dialog__head { position: relative; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.field input, .field textarea { width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius); border: 1px solid hsl(var(--border)); background: hsl(var(--background)); color: hsl(var(--foreground)); font: inherit; }
.field input:focus, .field textarea:focus { outline: 2px solid hsl(var(--primary)); outline-offset: 1px; }
.field .error { color: hsl(var(--destructive)); font-size: 0.875rem; margin-top: 0.25rem; }
.field-row { display: grid; gap: 1rem; }
.dialog .btn { width: 100%; }
.dialog__success { text-align: center; padding: 2rem 0; }
.dialog__success svg { width: 4rem; height: 4rem; color: hsl(var(--accent)); margin: 0 auto 1rem; }
.hidden { display: none !important; }

/* Toast */
.toast-stack { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 200; display: flex; flex-direction: column; gap: 0.5rem; }
.toast { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-left: 3px solid hsl(var(--primary)); border-radius: 0.5rem; padding: 0.875rem 1.25rem; font-size: 0.875rem; box-shadow: 0 12px 30px -12px hsl(0 0% 0% / 0.6); animation: toast-in 0.3s ease; }
.toast.error { border-left-color: hsl(var(--destructive)); }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Reveal */
.scroll-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.visible { opacity: 1; transform: none; }
.fade-up { opacity: 0; animation: fade-up 0.7s ease forwards; }
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

@media (min-width: 640px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .hero__actions, .cta-actions, .page-hero__actions { flex-direction: row; }
  .field-row { grid-template-columns: repeat(2, 1fr); }
  .wa-float span { display: inline; }
  .cta-inner { padding: 3.5rem; }
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; }
  .hero__content { padding: 8rem 0; }
}

@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .accelerate { grid-template-columns: repeat(2, 1fr); }
}
