:root {
  --bg: #050812;
  --bg-soft: #0a1020;
  --surface: rgba(8, 12, 24, 0.72);
  --surface-2: rgba(255, 255, 255, 0.06);
  --surface-3: rgba(255, 255, 255, 0.08);
  --text: #f8f2e7;
  --muted: #d6c7b0;
  --gold: #d6a54f;
  --gold-2: #f2cb7b;
  --red: #8d1337;
  --red-2: #b22349;
  --blue: #0d2a59;
  --blue-2: #174386;
  --line: rgba(214, 165, 79, 0.28);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(178, 35, 73, 0.36), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(23, 67, 134, 0.34), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(214, 165, 79, 0.08), transparent 18%),
    linear-gradient(135deg, #06070e 0%, #12070d 28%, #081224 62%, #03050d 100%);
  min-height: 100vh;
}

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

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(900px, 100%); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 70px 0; }
.eyebrow {
  color: var(--gold-2);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 16px;
}
.section-title, h1, h2, h3, .brand strong {
  font-family: 'Cinzel', serif;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 18px;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.site-shell { position: relative; overflow: hidden; }
.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.site-shell::before { top: 60px; left: -120px; background: var(--red-2); }
.site-shell::after { top: 120px; right: -120px; background: var(--blue-2); }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(4, 7, 14, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(214,165,79,0.35);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}
.brand strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gold-2);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  max-width: none;
}

.brand span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  max-width: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav a {
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 999px;
  transition: .25s ease;
}
.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid rgba(214,165,79,0.5);
  background: linear-gradient(135deg, rgba(141,19,55,0.34), rgba(13,42,89,0.34));
  color: var(--gold-2);
  box-shadow: 0 16px 34px rgba(0,0,0,0.26);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--gold-2); box-shadow: 0 24px 40px rgba(0,0,0,0.32); }
.btn-outline {
  background: transparent;
  color: var(--text);
}
.btn-small { padding: 11px 18px; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(214,165,79,0.34);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
}

.hero {
  position: relative;
  padding: 92px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: .10fr .95fr;
  gap: 10px;
  align-items: center;
}
.hero-copy, .hero-card, .glass, .service-card, .contact-card, .about-grid > *, .values-list, .story-card {
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 0 0 20px;
}
.hero-copy p {
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(141,19,55,0.16), rgba(13,42,89,0.22));
  box-shadow: var(--shadow);
}
.hero-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.hero-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(4, 8, 16, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(214,165,79,0.22);
}
.hero-badge strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.glass {
  border-radius: 22px;
  border: 1px solid rgba(214,165,79,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}
.stat-card {
  padding: 22px;
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--gold-2);
  margin-bottom: 6px;
  font-family: 'Cinzel', serif;
}
.stat-card span { color: var(--muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(214,165,79,0.22);
  background: linear-gradient(180deg, rgba(141,19,55,0.22), rgba(10,16,32,0.96));
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(242,203,123,0.72); }
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-content { padding: 22px; }
.service-content h3 { margin: 0 0 12px; font-size: 1.55rem; color: var(--gold-2); }
.service-content p { color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(214,165,79,0.22);
  font-size: .82rem;
  color: var(--gold-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
}
.story-card, .values-list, .contact-card, .mission-card {
  padding: 32px;
}
.card-title {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 2rem;
}
.story-card p, .mission-card p, .contact-card p { color: var(--muted); line-height: 1.82; }
.values-list ul, .check-list { list-style: none; padding: 0; margin: 0; }
.values-list li, .check-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
}
.values-list li:last-child, .check-list li:last-child { border-bottom: 0; }
.values-list li::before, .check-list li::before {
  content: "✓";
  color: var(--gold-2);
  margin-right: 12px;
}
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.mission-card h3 { margin: 0 0 14px; font-size: 1.8rem; color: var(--gold-2); }

.page-hero {
  padding: 82px 0 24px;
}
.page-hero .panel {
  padding: 40px;
}
.panel {
  border-radius: 28px;
  border: 1px solid rgba(214,165,79,0.22);
  background: linear-gradient(145deg, rgba(141,19,55,0.18), rgba(13,42,89,0.18));
  box-shadow: var(--shadow);
}


.section-heading {
  max-width: 860px;
  margin: 0 0 28px;
}
.section-text {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card strong {
  display: block;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 30px;
  padding: 26px 0 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}
.footer-inner a { color: var(--gold-2); }

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats, .hero-grid, .about-grid, .contact-grid, .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 8, 18, 0.95);
    border: 1px solid rgba(214,165,79,0.16);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { text-align: center; }
  .brand strong { font-size: 1rem; }
  .brand span { font-size: .75rem; }
  .hero { padding-top: 62px; }
  .hero-copy h1 { font-size: clamp(2.2rem, 10vw, 3.3rem); }
  .section, .section-tight { padding: 64px 0; }
  .page-hero .panel, .story-card, .values-list, .contact-card, .mission-card { padding: 24px; }
  .services-grid { grid-template-columns: 1fr; }
}


/* Floating Social Buttons */
.float-social {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1200;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(141, 19, 55, 0.96), rgba(13, 42, 89, 0.96));
  border: 1px solid rgba(214, 165, 79, 0.55);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(214, 165, 79, 0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: var(--gold-2);
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 42px rgba(0,0,0,.45), 0 0 0 10px rgba(214,165,79,.09);
  border-color: rgba(242, 203, 123, 0.95);
}
.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.float-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #20BA58 100%);
  color: #fff;
}
.float-btn.instagram {
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 100%);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(214,165,79,.3);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.gallery-card img,
.gallery-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-card .caption {
  padding: 18px;
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.before-after-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(214,165,79,.26);
  box-shadow: var(--shadow);
}
.before-after-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.before-after-media .label {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 12px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(5, 8, 18, .74);
  border: 1px solid rgba(214,165,79,.35);
  color: var(--gold-2);
}
.before-after-pane {
  position: relative;
}
.before-after-pane img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.before-after-copy {
  padding: 24px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 26px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(214,165,79,.25);
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: var(--gold-2);
  font-size: 1.1rem;
  letter-spacing: .16em;
  margin-bottom: 12px;
}
.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(214,165,79,.28);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.map-embed {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: saturate(.9) contrast(1.05);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.contact-list {
  display: grid;
  gap: 16px;
}
.contact-item {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(214,165,79,.2);
  background: rgba(255,255,255,.04);
}


.before-after-copy h3 {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 1.5rem;
}
.before-after-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(214,165,79,.09);
  border: 1px solid rgba(214,165,79,.22);
  color: var(--gold-2);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-extended {
  padding-top: 10px;
}
.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr .8fr .9fr;
  gap: 30px;
}
.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer-columns li {
  color: var(--muted);
}
.inline-link {
  color: var(--gold-2);
}
.video-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 980px) {
  .gallery-grid,
  .testimonials-grid,
  .contact-grid,
  .footer-columns,
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  .float-social {
    right: 14px;
    bottom: 16px;
  }
  .before-after-pane img {
    height: 220px;
  }
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .before-after-media {
    grid-template-columns: 1fr;
  }
  .float-btn {
    width: 54px;
    height: 54px;
  }
}

/* ── Premium Location Section ── */
.location-section {
  padding: 100px 0;
  position: relative;
}
.location-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(214,165,79,0.07), transparent 60%);
  pointer-events: none;
}
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(214,165,79,0.28);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}
.location-info {
  background: linear-gradient(160deg, rgba(141,19,55,0.28) 0%, rgba(13,42,89,0.32) 60%, rgba(5,8,18,0.92) 100%);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  backdrop-filter: blur(12px);
}
.location-header .eyebrow { margin-bottom: 10px; }
.location-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.15;
}
.location-header p {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.75;
  margin: 0;
}
.location-details {
  display: grid;
  gap: 14px;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(214,165,79,0.18);
  transition: background .25s ease, border-color .25s ease;
}
.location-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(214,165,79,0.36);
}
.location-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(141,19,55,0.55), rgba(13,42,89,0.55));
  border: 1px solid rgba(214,165,79,0.25);
  display: grid;
  place-items: center;
  color: var(--gold-2);
}
.location-icon svg { width: 20px; height: 20px; fill: currentColor; }
.location-item-text strong {
  display: block;
  color: var(--gold-2);
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.location-item-text span,
.location-item-text a {
  color: var(--text);
  font-size: .96rem;
  line-height: 1.5;
}
.location-item-text a:hover { color: var(--gold-2); }
.location-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.location-map {
  position: relative;
  min-height: 460px;
  height: 100%;
  overflow: hidden;
  border-radius: 0 28px 28px 0;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.85) contrast(1.06) brightness(.9);
}

.location-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(5,8,18,0.28) 0%, transparent 18%),
    linear-gradient(to bottom, rgba(5,8,18,0.12) 0%, transparent 15%);
  z-index: 2;
}

@media (max-width: 980px) {
  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 320px;
    height: 320px;
    position: relative;
    border-radius: 0 0 28px 28px;
  }
}

@media (max-width: 640px) {
  .location-info {
    padding: 34px 24px;
  }

  .location-map {
    min-height: 280px;
    height: 280px;
  }
}
