@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --bg: #090909;
  --bg-soft: #12100e;
  --panel: rgba(22, 18, 14, 0.78);
  --panel-strong: rgba(15, 12, 10, 0.92);
  --text: #f5eee5;
  --muted: #c0b5a8;
  --line: rgba(234, 198, 139, 0.14);
  --gold: #e5bf82;
  --gold-strong: #f3d4a2;
  --gold-soft: rgba(229, 191, 130, 0.12);
  --success: #7bd8a3;
  --danger: #ff8c80;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 16px 40px rgba(229, 191, 130, 0.15);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }

@keyframes fade-up {
  from { opacity: 0; transform: translate3d(0, 30px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }

/* Typography */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 16px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--gold-strong);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.button, .button-outline, .button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.button {
  background: linear-gradient(135deg, var(--gold-strong), #c9944c);
  color: #110d08;
  box-shadow: var(--shadow-gold);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(229, 191, 130, 0.25); }

.button-outline {
  border-color: var(--gold);
  color: var(--gold-strong);
  background: transparent;
}
.button-outline:hover { background: var(--gold-soft); }

.button-ghost { color: var(--muted); }
.button-ghost:hover { color: var(--gold-strong); }

/* Header */
.site-header {
  position: absolute;
  top: 0; width: 100%;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; }
.brand-mark { display: flex; align-items: center; gap: 16px; }
.brand-mark__text { display: flex; flex-direction: column; }
.brand-mark__title { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; color: var(--gold-strong); }
.brand-mark__subtitle { font-size: 0.75rem; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }

.nav { display: flex; gap: 32px; }
.nav a { color: #fff; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s; }
.nav a:hover, .nav a.is-active { color: var(--gold); }
.header-actions { display: flex; gap: 16px; }

/* Hero Rich */
.hero-rich {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}
.hero-rich__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-rich__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-rich__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.7) 50%, rgba(9,9,9,0.4) 100%);
}
.hero-rich__content {
  max-width: 700px;
}
.hero-signal {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold-strong);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(229, 191, 130, 0.1);
}
.hero-rich__desc {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 40px;
}

/* Sections */
.section { padding: 100px 0; }
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.align-center { align-items: center; }

/* About Section */
.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--line);
}
.trust-icons { margin-top: 32px; display: grid; gap: 16px; }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.1rem; color: var(--gold-strong);
}
.trust-item span { color: var(--gold); font-size: 1.4rem; }

/* Vision & Mission */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.vision-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform 0.4s ease;
}
.vision-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.vision-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 24px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.service-card__img { height: 280px; overflow: hidden; }
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: 32px; }

/* Map Section */
.region-grid-small { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.region-card-small {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--gold-strong);
  transition: all 0.3s;
}
.region-card-small:hover { background: var(--gold-soft); border-color: var(--gold); }

.css-map-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background: radial-gradient(circle at center, #1a1613 0%, var(--bg) 70%);
  border-radius: 50%;
  border: 1px solid var(--line);
}
.css-map-base { position: absolute; inset: 0; }
.map-dot {
  position: absolute;
  width: 16px; height: 16px;
  background: var(--gold-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--gold);
  cursor: pointer;
}
.map-dot::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.map-dot::after {
  content: attr(data-city);
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg-soft);
  color: var(--gold-strong);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--line);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.map-dot:hover::after { opacity: 1; }

/* FAQ Rich */
.faq-rich-section { background: var(--bg-soft); }
.faq-rich-grid { max-width: 800px; margin: 48px auto 0; display: grid; gap: 16px; }
.faq-rich-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-rich-item summary {
  padding: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--gold-strong);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-rich-item summary::-webkit-details-marker { display: none; }
.faq-rich-item summary::after { content: '+'; color: var(--gold); font-size: 1.8rem; }
.faq-rich-item[open] summary::after { content: '−'; }
.faq-rich-content { padding: 0 24px 24px; color: var(--muted); }

/* CTA Rich */
.cta-rich {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 80px 40px;
  text-align: center;
  border: 1px solid var(--line);
}
.cta-rich__bg { position: absolute; inset: 0; z-index: -1; }
.cta-rich__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.cta-rich__content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-rich .header-actions { justify-content: center; margin-top: 32px; }

/* Footer */
.footer {
  background: var(--bg-soft);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer__nav { display: flex; gap: 64px; }
.nav-group h4, .footer__contact h4 { color: var(--gold-strong); margin-bottom: 24px; font-family: "Manrope", sans-serif; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.9rem; }
.nav-group a { display: block; color: var(--muted); margin-bottom: 12px; transition: color 0.3s; }
.nav-group a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line); color: #888; font-size: 0.9rem;
}

/* Utilities */
.stack-24 { display: grid; gap: 24px; }
.stack-20 { display: grid; gap: 20px; }
.stack-16 { display: grid; gap: 16px; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  background: #25D366;
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.05); }

/* Mobile */
.mobile-dock { display: none; }

@media (max-width: 1024px) {
  .section-split, .card-grid, .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .nav { display: none; }
  .css-map-container { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero-rich { padding-top: 100px; text-align: center; }
  .hero-rich .header-actions { justify-content: center; flex-direction: column; }
  .mobile-dock {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; bottom: 0; width: 100%; z-index: 100;
    background: var(--bg-soft); border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-dock a {
    padding: 16px 0; text-align: center; color: var(--muted); font-size: 0.8rem;
  }
  .mobile-dock a.is-active { color: var(--gold-strong); }
  .whatsapp-float { display: none; }
}