:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --primary: #ffffff;
  --gold: #d4af37;
  --secondary: #999999;
  --glass: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --transition: 360ms cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  color: var(--primary);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.06), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 30%);
  z-index: -2;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 120px 0; position: relative; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.glass { background: var(--glass); border: 1px solid var(--border); backdrop-filter: blur(22px); box-shadow: var(--shadow); }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 700; margin-bottom: 18px; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.02; }
h2 { font-size: clamp(2.3rem, 5vw, 5.2rem); letter-spacing: -.04em; margin-bottom: 24px; }
p { color: var(--secondary); line-height: 1.8; }
.section-head { text-align: center; margin-bottom: 54px; }
.section-head h2 { max-width: 820px; margin-inline: auto; }

.preloader { position: fixed; inset: 0; background: #050505; z-index: 9999; display: grid; place-items: center; transition: opacity .8s ease, visibility .8s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.loader-mark { font-family: "Playfair Display"; font-size: 4rem; color: var(--gold); animation: pulse 1.6s infinite; }
.loader-line { width: 180px; height: 2px; background: rgba(255,255,255,.12); overflow: hidden; position: absolute; top: 58%; }
.loader-line span { display: block; height: 100%; width: 45%; background: var(--gold); animation: loadLine 1.2s infinite; }
@keyframes loadLine { from { transform: translateX(-110%); } to { transform: translateX(240%); } }
@keyframes pulse { 50% { opacity: .45; transform: scale(.96); } }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), #fff2b6); z-index: 9998; }
.cursor-dot, .cursor-glow { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9997; transform: translate(-50%, -50%); }
.cursor-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.cursor-glow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(212,175,55,.45); transition: width .25s, height .25s; }
.cursor-glow.active { width: 70px; height: 70px; background: rgba(212,175,55,.07); }
#particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .8; }

.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); }
.site-header.scrolled { background: rgba(11,11,11,.7); backdrop-filter: blur(24px); border-bottom: 1px solid rgba(255,255,255,.08); }
.navbar { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Montserrat"; font-weight: 800; letter-spacing: -.02em; }
.brand-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #111; background: linear-gradient(135deg, var(--gold), #fff0a8); font-family: "Playfair Display"; box-shadow: 0 0 32px rgba(212,175,55,.25); }
.nav-menu { display: flex; gap: 34px; list-style: none; }
.nav-menu a { color: rgba(255,255,255,.78); font-size: .94rem; position: relative; transition: var(--transition); }
.nav-menu a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--gold); transition: var(--transition); }
.nav-menu a:hover { color: #fff; }
.nav-menu a:hover::after { width: 100%; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 50%; background: var(--glass); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; margin: 4px auto; transition: var(--transition); }

.hero { min-height: 100vh; display: grid; place-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity 1.3s ease, transform 7s ease; }
.hero-bg.active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.36), rgba(0,0,0,.72)); }
.hero-content { position: relative; z-index: 2; padding-top: 80px; }
.hero-title { max-width: 920px; font-size: clamp(3.5rem, 9vw, 8.8rem); letter-spacing: -.07em; margin-bottom: 24px; }
.hero-subtitle { max-width: 690px; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 28px; border-radius: 999px; border: 1px solid var(--border); font-weight: 700; position: relative; overflow: hidden; transition: var(--transition); }
.btn-primary { color: #111; background: linear-gradient(135deg, var(--gold), #fff0a8); border-color: transparent; box-shadow: 0 18px 45px rgba(212,175,55,.22); }
.btn-ghost { background: rgba(255,255,255,.07); color: #fff; backdrop-filter: blur(18px); }
.btn:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(212,175,55,.24); }
.ripple span.ripple-circle { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple .7s ease-out; background: rgba(255,255,255,.45); pointer-events: none; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }
.hero-card { position: absolute; right: 8vw; bottom: 16vh; z-index: 2; width: 260px; border-radius: 24px; padding: 22px; animation: float 4s ease-in-out infinite; }
.hero-card span { color: var(--gold); font-size: .76rem; text-transform: uppercase; letter-spacing: .2em; }
.hero-card strong { display: block; margin: 10px 0; }
.hero-card small { color: var(--secondary); }
.hero-shape { position: absolute; border: 1px solid rgba(212,175,55,.22); border-radius: 40%; z-index: 1; animation: rotate 20s linear infinite; }
.shape-one { width: 360px; height: 360px; right: -120px; top: 20%; }
.shape-two { width: 180px; height: 180px; left: 8%; bottom: 13%; animation-direction: reverse; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-18px); } }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.62); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; display: grid; place-items: center; gap: 10px; }
.scroll-indicator span { width: 1px; height: 48px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 1.5s infinite; }
@keyframes scrollPulse { 50% { height: 28px; opacity: .45; } }

.marquee-section { padding: 22px 0; overflow: hidden; border-block: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.marquee { white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee span { display: inline-block; margin-right: 54px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.about-media { position: relative; }
.about-media img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.experience-badge { position: absolute; right: -30px; bottom: 50px; border-radius: 22px; padding: 22px; }
.experience-badge strong { font-family: "Playfair Display"; font-size: 3rem; color: var(--gold); display: block; }
.counter-grid, .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.counter-grid div, .stats-grid div { padding: 22px; border-radius: 22px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); }
.counter-grid strong, .stats-grid strong { font-size: 2rem; color: var(--gold); display: block; font-family: "Montserrat"; }
.counter-grid span, .stats-grid span { color: var(--secondary); font-size: .86rem; }

.filter-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { border: 1px solid var(--border); color: #fff; background: rgba(255,255,255,.06); padding: 12px 20px; border-radius: 999px; position: relative; overflow: hidden; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #111; border-color: transparent; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 26px; border: 1px solid rgba(255,255,255,.1); cursor: pointer; background: var(--surface); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .8s ease; }
.gallery-item:hover img { transform: scale(1.12); filter: brightness(.7); }
.gallery-item div { position: absolute; inset: auto 18px 18px 18px; padding: 18px; border-radius: 20px; background: rgba(0,0,0,.45); backdrop-filter: blur(16px); transform: translateY(18px); opacity: 0; transition: var(--transition); }
.gallery-item:hover div { opacity: 1; transform: translateY(0); }
.gallery-item span { color: var(--gold); font-size: .78rem; }
.gallery-item strong { display: block; margin-top: 4px; }
.gallery-item.hide { display: none; }

.service-grid, .pricing-grid, .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card, .price-card, .team-card { position: relative; padding: 28px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.1); overflow: hidden; transition: var(--transition); }
.service-card::before, .price-card::before, .team-card::before { content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit; background: linear-gradient(135deg, transparent, rgba(212,175,55,.8), transparent); opacity: 0; transition: var(--transition); pointer-events: none; }
.service-card:hover, .price-card:hover, .team-card:hover { transform: translateY(-10px); box-shadow: 0 26px 70px rgba(212,175,55,.12); }
.service-card:hover::before, .price-card:hover::before, .team-card:hover::before { opacity: 1; }
.service-card span { font-size: 2.1rem; display: inline-block; margin-bottom: 20px; }
.service-card h3, .price-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-list div { padding: 22px; border-radius: 20px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); }

.testimonial-shell { min-height: 360px; border-radius: var(--radius); padding: 44px; position: relative; overflow: hidden; }
.testimonial { display: none; text-align: center; max-width: 760px; margin: auto; animation: blurReveal .7s ease; }
.testimonial.active { display: block; }
.testimonial img { width: 86px; height: 86px; border-radius: 50%; object-fit: cover; margin: 0 auto 24px; border: 2px solid var(--gold); }
.testimonial p { font-size: clamp(1.1rem, 2vw, 1.55rem); color: #fff; }
.testimonial strong { display: block; margin-top: 22px; }
.testimonial span { color: var(--gold); letter-spacing: .25em; }
@keyframes blurReveal { from { opacity: 0; filter: blur(16px); transform: scale(.98); } to { opacity: 1; filter: blur(0); transform: scale(1); } }
.stats-band { padding: 70px 0; background: linear-gradient(90deg, rgba(212,175,55,.12), rgba(255,255,255,.03), rgba(212,175,55,.1)); border-block: 1px solid rgba(255,255,255,.08); }
.stats-grid { margin-top: 0; text-align: center; }
.price-card { min-height: 440px; display: flex; flex-direction: column; gap: 18px; }
.price-card strong { font-size: 3rem; font-family: "Montserrat"; color: var(--gold); }
.price-card ul { color: var(--secondary); line-height: 2; padding-left: 18px; margin-bottom: auto; }
.price-card.featured { background: linear-gradient(180deg, rgba(212,175,55,.16), rgba(255,255,255,.04)); transform: translateY(-20px); }
.tag { align-self: flex-start; color: #111; background: var(--gold); padding: 7px 12px; border-radius: 999px; font-size: .76rem; font-weight: 800; }
.team-card { text-align: center; }
.team-card img { border-radius: 24px; aspect-ratio: 1/1.05; object-fit: cover; margin-bottom: 18px; filter: grayscale(.1); }
.team-card div { color: var(--gold); letter-spacing: .3em; margin-top: 12px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.insta-grid img { border-radius: 20px; aspect-ratio: 1; object-fit: cover; transition: var(--transition); }
.insta-grid img:hover { transform: scale(.96); filter: brightness(.72); }

.faq-list { max-width: 880px; display: grid; gap: 14px; }
.faq-item { width: 100%; text-align: left; color: #fff; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; padding: 22px 24px; }
.faq-item span { display: flex; justify-content: space-between; font-weight: 700; }
.faq-item span::after { content: "+"; color: var(--gold); }
.faq-item.active span::after { content: "−"; }
.faq-item p { max-height: 0; overflow: hidden; transition: max-height .4s ease, margin .4s ease; }
.faq-item.active p { max-height: 160px; margin-top: 14px; }
.contact-form { border-radius: var(--radius); padding: 34px; display: grid; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea, .newsletter input { width: 100%; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 15px 16px; outline: none; transition: var(--transition); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus, .newsletter input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,.08); }
.info-card { border-radius: 18px; padding: 18px; margin-top: 14px; display: grid; gap: 4px; }
.info-card span { color: var(--secondary); }
.map-placeholder { height: 210px; border-radius: 24px; margin-top: 18px; display: grid; place-items: center; color: var(--secondary); }
.form-note { min-height: 22px; color: var(--gold); }
.footer { padding: 80px 0 30px; background: #070707; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h3 { margin-bottom: 18px; }
.footer a { display: block; color: var(--secondary); margin: 10px 0; transition: var(--transition); }
.footer a:hover { color: var(--gold); transform: translateX(4px); }
.newsletter { display: flex; gap: 10px; }
.newsletter button { border: 0; border-radius: 14px; padding: 0 18px; background: var(--gold); font-weight: 800; position: relative; overflow: hidden; }
.copyright { text-align: center; color: var(--secondary); padding-top: 42px; font-size: .88rem; }

.float-btn, .scroll-top { position: fixed; right: 22px; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; z-index: 900; border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(18px); box-shadow: var(--shadow); transition: var(--transition); }
.float-btn:hover, .scroll-top:hover { transform: translateY(-5px); }
.whatsapp { bottom: 92px; background: rgba(37, 211, 102, .82); }
.call { bottom: 148px; background: rgba(212,175,55,.86); color: #111; }
.scroll-top { bottom: 22px; background: rgba(255,255,255,.08); color: #fff; opacity: 0; visibility: hidden; }
.scroll-top.show { opacity: 1; visibility: visible; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.86); z-index: 3000; display: none; place-items: center; padding: 28px; backdrop-filter: blur(20px); }
.lightbox.show { display: grid; }
.lightbox img { max-height: 86vh; border-radius: 22px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: rgba(255,255,255,.1); color: #fff; font-size: 2rem; }

.reveal { opacity: 0; transition: opacity .8s ease, transform .8s ease, filter .8s ease; }
.fade-up { transform: translateY(42px); }
.fade-left { transform: translateX(-48px); }
.fade-right { transform: translateX(48px); }
.zoom-in { transform: scale(.92); }
.reveal.visible { opacity: 1; transform: translate(0) scale(1); filter: blur(0); }
.text-reveal { animation: textReveal 1.1s ease both; }
@keyframes textReveal { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
.split-text .char { display: inline-block; opacity: 0; transform: translateY(32px); animation: charUp .7s ease forwards; }
@keyframes charUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-glow { display: none; }
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; top: 86px; right: 20px; left: 20px; display: grid; gap: 0; padding: 18px; border-radius: 24px; background: rgba(11,11,11,.9); border: 1px solid var(--border); backdrop-filter: blur(24px); transform: translateY(-16px); opacity: 0; visibility: hidden; transition: var(--transition); }
  .nav-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-menu a { display: block; padding: 14px; }
  .grid-2 { grid-template-columns: 1fr; gap: 42px; }
  .service-grid, .pricing-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .counter-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { display: none; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 82px 0; }
  .hero-title { font-size: clamp(3.1rem, 16vw, 5.5rem); }
  .hero-actions, .newsletter { flex-direction: column; }
  .btn { width: 100%; }
  .gallery, .service-grid, .pricing-grid, .team-grid, .why-list, .footer-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; min-height: 280px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .experience-badge { right: 12px; bottom: 18px; }
}
