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

html {
  scroll-behavior: smooth;
}

body {
  background: #111111;
  color: #f0ede8;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8a96e, transparent);
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c8a96e;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.05rem, 3.8vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  color: #f0ede8;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  background: transparent;
  border: 1px solid #c8a96e;
  color: #c8a96e;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold:hover {
  background: #c8a96e;
  color: #080808;
}

.btn-gold-solid {
  background: #c8a96e;
  color: #080808;
}

.btn-gold-solid:hover {
  background: #dfc08a;
  color: #080808;
}

.nav-shell,
.section-shell,
.footer-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  padding: 28px 0;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
  padding: 16px 0;
}

.navbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  height: 56px;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex: 1;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c8a96e;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #c8a96e;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-pill {
  min-width: 48px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 169, 110, 0.35);
  color: #c8a96e;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-fade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.14) 100%);
}

.hero-fade {
  background: linear-gradient(to top, #080808 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 140px 24px 84px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(0, 320px);
  gap: 48px;
  align-items: end;
}

.hero-copy h1 {
  margin: 24px 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6.8vw, 5.7rem);
  font-weight: 300;
  line-height: 1.03;
  color: #f0ede8;
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 40px;
  color: rgba(240, 237, 232, 0.76);
  line-height: 1.85;
  font-size: 15px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-side {
  justify-self: end;
  width: min(100%, 360px);
  padding: 24px 0 0;
}

.hero-side-card {
  border: 1px solid rgba(200, 169, 110, 0.18);
  background: rgba(8, 8, 8, 0.52);
  backdrop-filter: blur(10px);
  padding: 24px;
}

.hero-side-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: #f0ede8;
  margin-bottom: 16px;
}

.hero-side-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-side-card li {
  color: rgba(240, 237, 232, 0.74);
  line-height: 1.7;
}

.hero-side-card li strong {
  color: #c8a96e;
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(200, 169, 110, 0.6);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #c8a96e, transparent);
}

.stats-band {
  border-top: 1px solid rgba(200, 169, 110, 0.08);
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
  background: #0d0d0d;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5.6vw, 4.7rem);
  font-weight: 300;
  color: #c8a96e;
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  color: rgba(240, 237, 232, 0.62);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}

.section-copy {
  max-width: 520px;
  color: rgba(240, 237, 232, 0.68);
  line-height: 1.8;
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.15);
  background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
  transition: all 0.4s ease;
  padding: 28px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  border-color: rgba(200, 169, 110, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 169, 110, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(200, 169, 110, 0.24);
  color: #c8a96e;
  font-size: 18px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #f0ede8;
}

.service-card p {
  color: rgba(240, 237, 232, 0.72);
  line-height: 1.8;
  font-size: 15px;
}

.service-detail {
  display: inline-block;
  margin-top: 18px;
  color: #c8a96e;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 32px;
}

.content-card,
.faq-card,
.cta-card {
  border: 1px solid rgba(200, 169, 110, 0.12);
  background: linear-gradient(135deg, #191919 0%, #141414 100%);
  padding: 32px;
}

.content-card h3,
.faq-card h3,
.cta-card h3 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: #f0ede8;
}

.content-card p,
.faq-card p,
.cta-card p {
  color: rgba(240, 237, 232, 0.72);
  line-height: 1.85;
  font-size: 15px;
}

.content-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.content-card li {
  color: rgba(240, 237, 232, 0.72);
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
}

.content-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a96e;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #1b1a12 0%, #141414 100%);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.seo-footer {
  background: #050505;
  border-top: 1px solid rgba(200, 169, 110, 0.12);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: rgba(240, 237, 232, 0.68);
  line-height: 1.8;
  text-decoration: none;
  font-size: 15px;
}

.footer-brand img {
  height: 60px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c8a96e;
  text-decoration: none;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: #c8a96e;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a:hover {
  color: #c8a96e;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.2), transparent);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(240, 237, 232, 0.5);
  text-decoration: none;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
}

.float-whatsapp i {
  font-size: 28px;
  color: #ffffff;
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 1080px) {
  .hero-content,
  .split-grid,
  .service-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .navbar-row {
    flex-wrap: wrap;
  }

  .navbar-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .desktop-only {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-intro,
  .cta-card,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-shell,
  .footer-shell,
  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar {
    padding: 18px 0;
  }

  .navbar-logo img {
    height: 48px;
  }

  .nav-link,
  .btn-gold,
  .lang-pill {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .btn-gold {
    width: 100%;
    padding: 12px 18px;
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 72px;
  }

  .hero-scroll {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
