:root {
  --bg: #070707;
  --bg-soft: #111111;
  --card: rgba(18, 18, 18, 0.82);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f7f4ee;
  --muted: #cfc8b7;
  --gold: #d9a441;
  --gold-2: #f3d287;
  --pink: #e84ca5;
  --orange: #ff9b20;
  --blue: #4aa4ff;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(232, 76, 165, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 155, 32, 0.16), transparent 20%),
    var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.page-fade {
  position: fixed; inset: 0; pointer-events: none; z-index: 2000;
  background: var(--bg); animation: fadePage .95s ease forwards;
}
@keyframes fadePage { to { opacity: 0; visibility: hidden; } }

.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 20px;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.65);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 56px; height: 56px; object-fit: cover; border-radius: 16px;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.08);
}
.brand strong {
  display: block; font-family: 'Cinzel', serif; font-size: 1.05rem;
}
.brand span { color: var(--muted); font-size: .92rem; }
nav { display: flex; flex-wrap: wrap; gap: 16px; }
nav a {
  color: var(--muted); font-weight: 600; transition: .25s ease;
}
nav a:hover { color: var(--gold-2); }

.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(0,0,0,.88) 5%, rgba(0,0,0,.54) 45%, rgba(0,0,0,.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.55));
}
.hero-content {
  position: relative; z-index: 2; display: grid; gap: 30px;
  grid-template-columns: 1.35fr .85fr; align-items: center; padding: 72px 0;
}
.eyebrow {
  margin: 0 0 14px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 800; font-size: .78rem;
}
.hero h1, .section h2, .hero-card h2 {
  font-family: 'Cinzel', serif; line-height: 1.05;
}
.hero h1 { margin: 0 0 14px; font-size: clamp(2.8rem, 6vw, 5.3rem); }
.hero-text {
  max-width: 680px; color: #ece4d5; font-size: 1.08rem; line-height: 1.8;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0 18px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #231300;
  box-shadow: 0 16px 34px rgba(217, 164, 65, .24);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06);
}
.btn-full { width: 100%; }
.hero-highlights {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 20px 0 0;
}
.hero-highlights li, .tag-list span {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10); color: #f3ecde; font-size: .95rem;
}
.hero-card, .service-card, .split-card, .social-card, .contact-form, .contact-info, .stat {
  background: var(--card); border: 1px solid var(--line); backdrop-filter: blur(10px);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card {
  padding: 28px; text-align: center;
}
.hero-card img {
  width: 170px; height: 170px; object-fit: cover; border-radius: 28px;
  margin: 0 auto 18px;
}
.hero-card h2 { margin: 6px 0 10px; font-size: 1.55rem; }
.hero-card p { color: var(--muted); line-height: 1.8; }
.contact-mini {
  display: grid; gap: 10px; margin-top: 20px;
}
.contact-mini a { color: var(--gold-2); word-break: break-word; }

.stats {
  margin-top: -40px; position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat { padding: 24px; }
.stat strong {
  display: block; font-size: 1.1rem; color: var(--gold-2); margin-bottom: 8px;
}
.stat span { color: var(--muted); }

.section { padding: 92px 0 18px; }
.section-heading { max-width: 760px; margin-bottom: 26px; }
.section h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3rem); }
.section-text { color: var(--muted); line-height: 1.8; }
.cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.service-card { padding: 28px; }
.service-card h3, .social-card h3 { margin-top: 0; font-size: 1.2rem; }
.service-card p, .social-card p { color: var(--muted); line-height: 1.75; }

.split-section {
  display: grid; grid-template-columns: 1fr 1.12fr; gap: 22px; align-items: stretch;
}
.split-card { padding: 34px; }
.split-card p { color: var(--muted); line-height: 1.85; }
.tag-list {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.split-media {
  border-radius: var(--radius); overflow: hidden; min-height: 420px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.split-media iframe { width: 100%; height: 100%; min-height: 420px; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item {
  padding: 0; border: none; background: transparent; cursor: pointer;
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.gallery-item:hover { transform: translateY(-4px) scale(1.01); }
.gallery-item img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
}

.social-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.social-card { padding: 28px; }
.social-card span {
  color: var(--gold-2); font-weight: 700;
}
.embed-wrap {
  margin-top: 22px; display: flex; justify-content: center;
}
.embed-wrap iframe {
  max-width: 100%; background: #fff; border-radius: 22px; box-shadow: var(--shadow);
}

.contact-section {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start;
  padding-bottom: 90px;
}
.contact-info, .contact-form { padding: 32px; }
.contact-info p { color: var(--muted); line-height: 1.8; }
.contact-list {
  display: grid; gap: 14px; margin-top: 22px;
}
.contact-list a, .contact-list span {
  padding: 14px 16px; background: rgba(255,255,255,.06); border-radius: 16px; border: 1px solid var(--line);
}
.contact-form {
  display: grid; gap: 16px;
}
.contact-form label {
  display: grid; gap: 8px; font-weight: 600; color: #f3ead6;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 16px 18px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); color: white; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(243, 210, 135, .7); box-shadow: 0 0 0 3px rgba(243, 210, 135, .08);
}
.form-note { color: var(--muted); font-size: .92rem; margin: 0; }

footer {
  padding: 26px 20px 38px; text-align: center; border-top: 1px solid var(--line); color: var(--muted);
}
footer a { color: var(--gold-2); }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #2cd46b, #17a14a); color: white; box-shadow: var(--shadow);
}
.whatsapp-float svg { width: 34px; height: 34px; fill: currentColor; }

.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.92);
  display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden;
  transition: .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(100%, 980px); max-height: 88vh; border-radius: 20px; box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px;
  border-radius: 50%; border: none; font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,.1); color: white;
}

.fade-up {
  opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease;
}
.fade-up.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .hero-content, .split-section, .contact-section, .cards-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .topbar { flex-direction: column; align-items: flex-start; }
  nav { gap: 12px; }
  .hero { min-height: auto; }
  .hero-content, .split-section, .contact-section, .cards-grid, .social-grid, .stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 44px 0 60px; }
  .hero-card img { width: 130px; height: 130px; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 4rem); }
  .section { padding-top: 72px; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 22px, 1180px); }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}
