:root {
  --bg: #0f1115;
  --paper: #f6f4ef;
  --text: #14161a;
  --muted: rgba(255,255,255,.75);
  --muted2: rgba(20,22,26,.65);
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.12);
  --stroke: rgba(255,255,255,.15);
  --stroke2: rgba(20,22,26,.12);
  --primary: #D4A300;
  --primary-soft: #F0DE84;
  --shadow: 0 18px 60px rgba(0,0,0,.25);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
}

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

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

.topbar {
  background: #0b0d12;
  color: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  font-size: 13px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.toplink {
  opacity: .92;
}
.toplink:hover { opacity: 1; }
.dot { opacity: .55; }

.header {
  position: sticky;
  top: 41px; /* below topbar */
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(246,244,239,.9);
  border-bottom: 1px solid rgba(20,22,26,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(20,22,26,.12);
  background: white;
}
.brand__name {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand__tag {
  font-size: 12px;
  color: rgba(20,22,26,.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  font-size: 14px;
}
.nav a {
  opacity: .9;
}
.nav a:hover { opacity: 1; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(180deg, var(--primary) 0%, #b78a00 100%);
  color: #101010;
  box-shadow: 0 10px 24px rgba(212,163,0,.25);
}
.btn--ghost {
  background: rgba(255,255,255,.86);
  border-color: rgba(20,22,26,.18);
}
.btn--ghost:hover { background: #fff; }
.btn--whatsapp {
  background: #10b981;
  color: #04140f;
  border-color: rgba(0,0,0,.06);
}
.btn--whatsapp:hover { opacity: .95; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(20,22,26,.14);
  background: rgba(255,255,255,.8);
}
.burger span {
  display:block;
  height: 2px;
  background: rgba(20,22,26,.75);
  margin: 6px 12px;
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(20,22,26,.08);
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 700;
  border-bottom: 1px dashed rgba(20,22,26,.12);
}
.mobile-nav .btn { width: 100%; margin-top: 12px; }

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 20% 20%, rgba(212,163,0,.18), transparent 55%),
    linear-gradient(90deg, rgba(15,17,21,.82) 0%, rgba(15,17,21,.55) 45%, rgba(15,17,21,.25) 100%);
}
.hero__content {
  position: relative;
  color: white;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  padding: 46px 0;
}
.kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero__mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.mini {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.mini__title { font-weight: 800; }
.mini__desc { font-size: 12px; color: rgba(255,255,255,.78); margin-top: 2px; }

.hero__card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.card {
  background: #fff;
  border: 1px solid rgba(20,22,26,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.glass {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  color: white;
}
.card__badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212,163,0,.22);
  border: 1px solid rgba(212,163,0,.30);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}
.glass h3 {
  margin: 12px 0 6px;
  font-size: 20px;
}
.glass p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.86);
}
.card__links {
  margin-top: 14px;
  font-weight: 700;
  font-size: 13px;
  opacity: .92;
}
.card__links a:hover { text-decoration: underline; }

.scrollhint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 34px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top: 10px;
}
.scrollhint span {
  width: 6px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  animation: bounce 1.2s infinite ease-in-out;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: .9; }
  50% { transform: translateY(12px); opacity: .55; }
}

.section {
  padding: 78px 0;
}
.section--alt {
  background: #fff;
}
.section__head {
  max-width: 70ch;
  margin-bottom: 26px;
}
.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
}
.section__head p {
  margin: 0;
  color: rgba(20,22,26,.72);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 16px;
}
.cards {
  grid-template-columns: repeat(4, 1fr);
}
.iconbox {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(212,163,0,.12);
  border: 1px solid rgba(212,163,0,.18);
  margin-bottom: 10px;
  font-size: 20px;
}
.card h3 { margin: 6px 0 8px; }
.card p { margin: 0; color: rgba(20,22,26,.70); line-height: 1.65; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: center;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px;
}
.checklist li {
  padding-left: 28px;
  position: relative;
  margin: 10px 0;
  color: rgba(20,22,26,.76);
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px; height: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 8px;
  background: rgba(16,185,129,.14);
  border: 1px solid rgba(16,185,129,.22);
  color: #0b5;
  font-weight: 900;
}

.cta-row {
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.media-stack img {
  border-radius: 18px;
  border: 1px solid rgba(20,22,26,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gitem {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
  border: 1px solid rgba(20,22,26,.10);
  transform: translateZ(0);
  transition: transform .16s ease;
}
.gitem:hover { transform: translateY(-3px); }
.gitem img { width: 100%; height: 220px; object-fit: cover; }

.video-wrap {
  max-width: 980px;
}
.video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(20,22,26,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.locations {
  grid-template-columns: repeat(3, 1fr);
}
.link {
  display:inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: #0f1115;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(212,163,0,.55);
}

.section--cta {
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(212,163,0,.18), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f8f7f2 100%);
}
.cta {
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(20,22,26,.10);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.cta h2 { margin: 0 0 8px; }
.cta p { margin: 0; color: rgba(20,22,26,.72); line-height: 1.6; }
.cta__actions {
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.formcard {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(20,22,26,.10);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.formcard h3 { margin: 0 0 6px; }
.formcard p { margin: 0 0 14px; color: rgba(20,22,26,.72); }
.formgrid {
  grid-template-columns: repeat(2, 1fr);
}
label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
}
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(20,22,26,.14);
  outline: none;
  font: inherit;
  background: #fff;
}
input:focus, textarea:focus {
  border-color: rgba(212,163,0,.55);
  box-shadow: 0 0 0 4px rgba(212,163,0,.16);
}
.full { grid-column: 1 / -1; }
form .btn { margin-top: 14px; }

.footer {
  background: #0b0d12;
  color: rgba(255,255,255,.9);
  padding: 26px 0 18px;
}
.footer__inner {
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer__left {
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
}
.footer__name { font-weight: 900; }
.footer__small { font-size: 12px; opacity: .78; margin-top: 2px; }
.footer__right {
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 13px;
}
.footer__right a:hover { text-decoration: underline; }
.footer__credit {
  padding-top: 12px;
  font-size: 12px;
  opacity: .84;
}
.footer__credit a {
  color: var(--primary-soft);
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.84);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.floatwa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #10b981;
  color: #04140f;
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
  border: 1px solid rgba(0,0,0,.08);
  z-index: 90;
  font-size: 22px;
}
.floatwa:hover { transform: translateY(-2px); }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__card { justify-content: flex-start; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gitem img { height: 200px; }
  .locations { grid-template-columns: 1fr; }
  .nav { display: none; }
  .burger { display: inline-flex; align-items:center; justify-content:center; }
  .mobile-nav.is-open { display: block; }
  .header { top: 41px; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 28px); }
  .hero__mini { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .formgrid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items:flex-start; }
}