:root {
  --bg: #0c0c0e;
  --bg-soft: #141417;
  --card: #1a1a1e;
  --gold: #d4af37;
  --pink: #ff2ea6;
  --text: #f3f1ea;
  --text-dim: #b8b5ac;
  --border: rgba(255,255,255,.08);
  --radius: 14px;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; position: relative; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 12px;
}
.center { text-align: center; }
.eyebrow.center { text-align: center; }
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 24px;
  letter-spacing: -.01em;
}
h2 span, h1 span { color: var(--pink); }

#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  z-index: 2000;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(12,12,14,.85);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: .92rem;
  color: var(--text-dim);
  transition: color .2s ease;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-nav {
  background: var(--pink);
  color: #fff;
  padding: 10px 20px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8892a);
  color: #1a1200;
  box-shadow: 0 8px 24px rgba(212,175,55,.25);
}
.btn-whatsapp {
  background: #25D366;
  color: #06210f;
}
.btn-whatsapp:hover { box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-block { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
.btn-small { padding: 9px 18px; font-size: .85rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,14,.55) 0%, rgba(12,12,14,.75) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(12,12,14,.75) 0%, rgba(12,12,14,.25) 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  max-width: 760px;
}
.hero-logo {
  height: 110px;
  width: auto;
  margin-bottom: 8px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badges span {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--text-dim);
}

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollcue 1.6s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img { width: 100%; height: 560px; object-fit: cover; }
.about-image-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(12,12,14,.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
}
.about-text p { color: var(--text-dim); }
.about-list { margin-top: 24px; }
.about-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.about-list li:last-child { border-bottom: none; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.4);
}
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.service-card p { margin: 0; color: var(--text-dim); font-size: .95rem; }

.styles-block {
  margin-top: 64px;
  text-align: center;
}
.styles-block h3 { color: var(--text-dim); font-weight: 600; margin-bottom: 18px; }
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.tags span {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-dim);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: .9rem;
}
.gallery-note a { color: var(--pink); font-weight: 600; }

/* Placeholder for missing images (user hasn't added the file yet) */
.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, #1c1c20, #1c1c20 10px, #201d22 10px, #201d22 20px);
  color: var(--text-dim);
  font-size: .8rem;
  padding: 14px;
  border: 1px dashed rgba(255,255,255,.15);
}

/* VIDEO */
.video-wrap {
  max-width: 860px;
  margin: 48px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.video-wrap video {
  width: 100%;
  max-height: 70vh;
  display: block;
}

/* REVIEWS */
.reviews-rating {
  text-align: center;
  margin-top: -8px;
  margin-bottom: 40px;
  color: var(--text-dim);
}
.stars { color: var(--gold); font-size: 1.3rem; display: block; margin-bottom: 6px; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
}
.review-card p { font-size: 1.05rem; font-style: italic; margin: 0 0 16px; }
.review-card footer { color: var(--gold); font-weight: 600; font-size: .9rem; }

/* BUDGET FORM */
.budget { background: var(--bg-soft); }
.budget-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.budget-text p { color: var(--text-dim); }
.budget-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.budget-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-dim);
}
.budget-form input,
.budget-form select,
.budget-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: .95rem;
  font-family: inherit;
}
.budget-form input:focus,
.budget-form select:focus,
.budget-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.checks { border: none; padding: 0; margin: 0; }
.checks legend { font-size: .88rem; color: var(--text-dim); padding: 0 0 10px; }
.checks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.check {
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  color: var(--text) !important;
  font-size: .9rem !important;
}
.check input { width: auto; accent-color: var(--pink); }
.form-hint {
  text-align: center;
  font-size: .8rem;
  color: var(--text-dim);
  margin: 0;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-grid p { color: var(--text-dim); }
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .2s ease, border-color .2s ease;
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.4); }
.contact-icon { font-size: 1.4rem; }
.contact-card strong { display: block; font-size: .92rem; }
.contact-card span { color: var(--text-dim); font-size: .82rem; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe {
  width: 100%; height: 320px;
  border: none;
  filter: grayscale(1) invert(.92) contrast(.9);
}
.map-label {
  padding: 16px 20px;
  background: var(--card);
  font-size: .85rem;
  color: var(--text-dim);
  margin: 0;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: var(--text-dim);
}

/* FLOATING WHATSAPP */
.fab-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #06210f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 900;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 10px 30px rgba(37,211,102,.4); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,.4); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,.4); }
}

/* reveal animation base state (GSAP controls the rest) */
[data-reveal] { will-change: transform, opacity; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .about-grid, .budget-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image img { height: 380px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(12,12,14,.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}
