:root {
  --bg: #100d18;
  --bg-soft: #1a1430;
  --surface: #191428;
  --surface-2: #251d38;
  --text: #f8f6fe;
  --muted: #b9b2ce;
  --brand: #f4b860;
  --brand-2: #ff9d42;
  --border: #322848;
  --radius: 16px;
  --shadow-soft: 0 8px 24px rgba(4, 2, 13, 0.32);
  --transition: 220ms ease;
}

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

html {
  overflow-x: hidden;
  max-width: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, #3a2f60 0%, transparent 35%),
    radial-gradient(circle at 85% -15%, #251f45 0%, transparent 30%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 60%);
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.15rem);
}

h2 {
  font-size: clamp(1.45rem, 6vw, 2.3rem);
}

h3 {
  font-size: clamp(1.1rem, 4.8vw, 1.4rem);
}

.container {
  width: min(1180px, 92%);
  max-width: 100%;
  margin: 0 auto;
  padding-inline: env(safe-area-inset-left, 0) env(safe-area-inset-right, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 10, 22, 0.78);
  backdrop-filter: blur(14px);
  overflow: visible;
}

.header-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  padding: 0.7rem 0;
  position: relative;
  z-index: 2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  flex: 0 0 auto;
}

/* Collapses in the flex row on mobile so fixed nav does not reserve a column; expands on desktop */
.header-nav-slot {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  overflow: visible;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

.brand strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  color: var(--brand);
  font-size: clamp(1.15rem, 4.2vw, 1.72rem);
  font-weight: 700;
}

.brand span,
.brand-tagline {
  font-size: clamp(0.78rem, 2.8vw, 1rem);
  color: var(--muted);
  line-height: 1.35;
}

/* Mobile menu: hamburger + slide-in drawer */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #292040, #211a32);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--transition), border-color var(--transition);
}

.menu-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
  transition: background var(--transition);
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
  transition: transform var(--transition);
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

body.menu-open .menu-icon {
  background: transparent;
}

body.menu-open .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

body.menu-open .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 2, 12, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.primary-nav {
  --nav-pad: 0.9rem 1.1rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(300px, 88vw);
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: max(0.75rem, env(safe-area-inset-top)) 0 max(1rem, env(safe-area-inset-bottom));
  list-style: none;
  background: linear-gradient(200deg, #1f1a2e, #150f22);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
  transform: translate3d(100%, 0, 0);
  transition: transform 280ms ease;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
}

body.menu-open .primary-nav {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1.1rem 0.9rem;
  margin: 0 0 0.3rem;
  border-bottom: 1px solid var(--border);
}

.nav-drawer-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(32, 26, 48, 0.9);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--transition);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1 1 auto;
}

.nav-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Fixed + translate avoids left:-9999px which widens the document and causes scroll-x */
.skip-link {
  position: fixed;
  top: 0;
  left: 0.75rem;
  z-index: 10002;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: var(--brand);
  color: #1a1000;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(calc(-100% - 12px));
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0.75rem);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.nav.primary-nav .nav-list a {
  display: block;
  text-align: left;
  font-size: 1.05rem;
  color: var(--muted);
  background: rgba(28, 22, 43, 0.55);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--nav-pad);
  margin: 0 0.9rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav.primary-nav .nav-list a.active {
  color: var(--text);
  border-color: rgba(244, 184, 96, 0.45);
  background: linear-gradient(180deg, #2d2540, #241c36);
}

.nav.primary-nav .nav-list a:hover,
.nav.primary-nav .nav-list a:focus-visible {
  color: var(--text);
  border-color: var(--border);
  outline: none;
}

.nav-drawer-cta {
  display: none;
  margin: 0.75rem 0.9rem 0;
  width: calc(100% - 1.8rem);
  justify-content: center;
  align-self: center;
}

@media (max-width: 899px) {
  .nav-drawer-cta {
    display: inline-flex;
    margin-top: auto;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.8rem 1.2rem;
  min-height: 48px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.btn-primary {
  color: #201100;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 18px rgba(255, 166, 67, 0.3);
}

.btn-outline {
  color: var(--brand);
  border-color: rgba(244, 184, 96, 0.9);
  background: transparent;
}

.header-cta {
  padding: 0.52rem 0.72rem;
  min-height: 44px;
  font-size: 0.78rem;
  line-height: 1.1;
  box-shadow: 0 4px 14px rgba(255, 166, 67, 0.28);
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.header-cta .cta-text-full {
  display: none;
}

.header-cta .cta-text-short {
  display: inline;
}

@media (min-width: 400px) {
  .header-cta .cta-text-full {
    display: inline;
  }

  .header-cta .cta-text-short {
    display: none;
  }

  .header-cta {
    font-size: 0.85rem;
    padding: 0.58rem 0.9rem;
  }
}

.hero {
  padding: 2.25rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--brand);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-actions .btn {
  flex: 1 1 auto;
  min-width: 0;
}

.section {
  padding: 1.5rem 0;
}

.section-header {
  margin-bottom: 0.95rem;
}

.cards,
.reviews,
.stats,
.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

.about-grid > *,
.contact-grid > * {
  min-width: 0;
}

.card,
.review,
.stat,
.contact-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card {
  overflow: hidden;
}

.card img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.card-content {
  padding: 0.95rem 0.95rem 1rem;
}

.card-content p,
.contact-card p,
.review p {
  margin-bottom: 0;
}

.stat,
.review,
.contact-card {
  padding: 1rem;
}

.stat strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--brand);
  font-size: 1.7rem;
}

.review .meta {
  margin-top: 0.65rem;
  color: #988eaf;
  font-size: 0.9rem;
}

.about-grid img,
.hero-grid img {
  max-height: 420px;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.footer {
  margin-top: 1.6rem;
  padding: 1.4rem 0 5.3rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.92rem;
}

.footer-nav a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-sep {
  color: #5c5378;
  user-select: none;
}

.footer-local {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.footer-local strong {
  color: #d8d0ec;
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: #8f87a8;
}

.floating {
  position: fixed;
  right: 0.75rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
  z-index: 30;
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
}

.floating.phone {
  bottom: 5rem;
}

.floating.whatsapp {
  bottom: 1.25rem;
}

body.menu-open {
  overflow: hidden;
  overflow-x: hidden;
}

body.menu-open .site-header {
  z-index: 250;
}

body.menu-open .floating {
  z-index: 5;
  pointer-events: none;
}

.reveal-in {
  opacity: 0;
  transform: translateY(14px);
  transition: transform 420ms ease, opacity 420ms ease;
}

.reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal-in {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .cards,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 900px) {
  body.menu-open {
    overflow: auto;
  }

  body.menu-open .site-header {
    z-index: 20;
  }

  .menu-toggle {
    display: none !important;
  }

  .menu-backdrop {
    display: none !important;
  }

  .nav-drawer-head {
    display: none !important;
  }

  .nav-drawer-cta {
    display: none !important;
  }

  .header-row {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem 1.25rem;
    padding: 0.9rem 0;
  }

  .header-nav-slot {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .brand {
    flex: 0 1 auto;
    max-width: min(300px, 34vw);
  }

  .primary-nav {
    position: static;
    z-index: auto;
    width: auto;
    max-width: none;
    height: auto;
    min-height: 0;
    max-height: none;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none !important;
    transition: none;
    overflow: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0 1 auto;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0;
  }

  .nav.primary-nav .nav-list a {
    margin: 0;
    font-size: 0.96rem;
    padding: 0.62rem 0.8rem;
    text-align: center;
    border: 1px solid transparent;
    background: rgba(28, 22, 43, 0.45);
  }

  .nav.primary-nav .nav-list a.active {
    border-color: var(--border);
  }

  .header-cta {
    flex: 0 0 auto;
    font-size: 0.95rem;
    padding: 0.62rem 1rem;
    min-height: 48px;
  }

  .hero {
    padding: 3.3rem 0 2.2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.8rem;
  }

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

  .about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }

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

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .card:hover,
  .review:hover,
  .contact-card:hover,
  .stat:hover {
    transform: translateY(-3px);
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  }

  .floating:hover {
    transform: translateY(-2px) scale(1.03);
  }
}
