*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1c1c;
  --dark4: #242424;
  --light: #f5f0e8;
  --muted: #9a9a8a;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.18);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.nav-logo span:last-child {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(245,240,232,0.75);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  transition: background 0.2s !important;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(16px);
  padding: 24px 32px 32px;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--light);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  font-weight: 700;
  border-bottom: none;
  margin-top: 8px;
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
#hero-bg {
  position: absolute;
  inset: 0;
  background: url('/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
#hero-bg.loaded { transform: scale(1); }
#hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.55) 50%, rgba(13,13,13,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(245,240,232,0.78);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(245,240,232,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 18px; height: 18px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── STATS BAR ── */
#stats {
  background: var(--gold);
  padding: 28px 48px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.stat-item span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.65);
  font-weight: 600;
}
@media (max-width: 680px) {
  #stats { padding: 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ── SECTIONS ── */
section {
  padding: 96px 48px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  section { padding: 72px 24px; }
}

/* ── ABOUT ── */
#about { background: var(--dark2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  color: rgba(245,240,232,0.72);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 24px 20px;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(201,168,76,0.5); }
.feature-card .icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
}

/* ── SERVICES ── */
#services { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45);
}
.service-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s;
}
.service-card:hover .service-img { filter: brightness(1); }
.service-body {
  padding: 20px;
}
.service-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  background: #25D366;
  color: #fff;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-wa:hover { background: #1ebe5b; transform: translateY(-1px); }
.btn-wa svg { width: 16px; height: 16px; }

/* ── NOTABLE WORK ── */
#work { background: var(--dark2); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.work-card {
  background: var(--dark4);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 28px 24px;
  transition: background 0.3s;
}
.work-card:hover { background: #2a2a2a; }
.work-card .stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.work-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.work-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── TEAM ── */
#team { background: var(--dark); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 10px;
  padding: 32px 20px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
}
.avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.team-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.team-card .bio {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CONTACT ── */
#contact { background: var(--dark2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item .ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item .ci-text strong {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-item .ci-text span {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.8);
}
.contact-panel {
  background: var(--dark4);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-panel h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-panel p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.contact-btns a:hover { opacity: 0.87; transform: translateY(-1px); }
.contact-btns a.cta-call { background: var(--gold); color: var(--dark); }
.contact-btns a.cta-wa { background: #25D366; color: #fff; }
.contact-btns a.cta-mail { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
  background: #080808;
  padding: 40px 48px;
  border-top: 1px solid rgba(201,168,76,0.14);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-logo span:last-child {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(154,154,138,0.5);
}
@media (max-width: 680px) {
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ── FLOATING WA ── */
#float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 900;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulse-wa 2.8s infinite;
}
#float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.65);
  animation: none;
}
#float-wa svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.85), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
