:root{
  --bg:#0B0B0F;
  --surface:#12121A;
  --surface2:#161626;
  --text:#F4F2ED;
  --muted:#B9B4AA;
  --line:rgba(255,255,255,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius:16px;

  --gold:#D6B15E;
  --gold2:#F3D38A;

  --max:1200px;
  --pad:20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.5;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button{font-family:inherit}

.container{
  max-width: var(--max);
  padding: 0 var(--pad);
  margin: 0 auto;
}

.muted{color:var(--muted)}
.small{font-size: 13px}
.gold{color:var(--gold)}

.section{
  padding: 84px 0;
}
@media (max-width: 720px){
  .section{padding: 58px 0;}
}

/* Nav */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(11,11,15,.70);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 180px;
}
.brand__mark{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold2), var(--gold));
  box-shadow: 0 0 0 5px rgba(214,177,94,.14);
}
.brand__name{
  font-weight: 800;
  letter-spacing: .03em;
}
.nav__links{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}
.nav__links a{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav__links a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.nav__cta{
  display:inline-flex;
}
@media (max-width: 820px){
  .nav__links{display:none;}
  .brand{min-width:auto;}
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  cursor:pointer;
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.04);}
.btn:active{transform: translateY(0px);}

.btn--primary{
  border-color: rgba(0,0,0,.12);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0B0B0F;
}
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.14);
}

/* Hero */
.hero{
  position: relative;
  padding: 90px 0 60px; /* more top space = more image visible */
  min-height: 92vh;      /* hero feels big and confident */
  display: flex;
  align-items: flex-start; /* content sits lower */
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:0;
}

.hero__video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero__logo{
  max-width: 280px;
  margin-bottom: 14px;
  opacity: .95;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(11,11,15,.85) 0%,
      rgba(11,11,15,.62) 40%,
      rgba(11,11,15,.30) 70%,
      rgba(11,11,15,.10) 100%
    );
}
.hero__grain{
  position:absolute; inset:-40%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.20;
  pointer-events:none;
}
.hero__content{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 18px;
  align-items: end;
  justify-content: center; /* <-- centers the column */
}
@media (max-width: 920px){
  .hero__content{grid-template-columns: 1fr; }
}
.hero__card{
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(18,18,26,.72);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.kicker{
  margin:0 0 10px;
  color: var(--muted);
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}
h1{
  margin:0;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.lead{
  margin: 12px 0 0;
  color: #f7f6f2;
  max-width: 56ch;
  font-size: 16px;
}
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.hero__micro{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.micro__item{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.micro__label{
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.micro__value{
  font-weight: 650;
}
.micro__value--gold{
  color: var(--gold2);
}
.chip{
  margin-left:auto;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  cursor:pointer;
}
.chip:hover{color: var(--text); border-color: rgba(255,255,255,.18);}

.hero__trust{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.trust__item{
  display:flex;
  gap: 12px;
  padding: 16px;
  background: rgba(18,18,26,.70);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(0,0,0,.35);
}
.trust__icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(214,177,94,.14);
  border: 1px solid rgba(214,177,94,.20);
}
.trust__item strong{display:block;}
.trust__item p{
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero__note{
  position: relative;
  margin-top: 16px;
}

/* Section headings */
.section__head{
  margin-bottom: 18px;
}
h2{
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.01em;
}
.section__head h2{
  display:inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(214,177,94,.35);
}

/* Cards */
.card{
  background: rgba(18,18,26,.55);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  box-shadow: none;
  overflow: hidden;
}
.card--elevated{
  background: rgba(18,18,26,.78);
  border-color: rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.card__pad{padding: 18px;}
.card--tight .card__pad{padding: 16px;}
.icon{margin:0 0 8px; font-size: 20px;}
h3{margin: 0 0 8px; font-size: 16px; letter-spacing: -0.01em;}
.split{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items:center;
  flex-wrap:wrap;
}

/* Video */
.video{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f0f16;
}
.video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* Grid helpers */
.grid{
  display:grid;
  gap: 18px;
}
.grid--2{grid-template-columns: repeat(2, minmax(0,1fr));}
.grid--3{grid-template-columns: repeat(3, minmax(0,1fr));}
.grid--4{grid-template-columns: repeat(4, minmax(0,1fr));}
@media (max-width: 980px){
  .grid--4{grid-template-columns: repeat(2, minmax(0,1fr));}
  .grid--3{grid-template-columns: repeat(2, minmax(0,1fr));}
}
@media (max-width: 620px){
  .grid--2, .grid--3, .grid--4{grid-template-columns: 1fr;}
}

/* Quotes */
.quote blockquote{
  margin:0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.quote figcaption{margin-top: 10px;}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 920px){
  .gallery{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 520px){
  .gallery{grid-template-columns: 1fr;}
}
.gitem{
  padding:0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow:hidden;
  background: #0f0f16;
  cursor:pointer;
}
.gitem img{
  width:100%;
  height: 300px;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}
.gitem:hover img{transform: scale(1.03); filter: brightness(1.03);}

/* Contact */
.contact{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 12px;
}
.contact__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.contact__label{
  color: var(--muted);
  font-size: 13px;
}
.contact__value{
  font-weight: 700;
}
.ctaRow{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 16px;
}

/* Forms */
form{display:flex; flex-direction:column; gap: 12px; margin-top: 10px;}
.form__row{display:flex; flex-direction:column; gap: 6px;}
label{color: var(--muted); font-size: 13px;}
input, textarea{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--text);
  font-size: 14px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(214,177,94,.55);
}

/* Footer */
.footer{
  padding: 28px 0 48px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(11,11,15,.65);
}
.footer__inner{
  display:flex;
  gap: 18px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer__brand{
  display:flex;
  gap: 12px;
  align-items:center;
}
.footer__links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.footer__links a{
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.footer__links a:hover{
  color: var(--text);
  border-bottom-color: rgba(214,177,94,.35);
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 22px;
  z-index: 200;
}
.lightbox.is-open{display:flex;}
.lightbox img{
  max-width: min(1100px, 96vw);
  max-height: 84vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(18,18,26,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn, .gitem img, .reveal, .toast{transition:none}
  .btn:hover{transform:none}
}
/* Mobile sticky WhatsApp */
.stickywa{
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 28px));
  display: none; /* shown only on mobile */
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0B0B0F;
  font-weight: 750;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  z-index: 220;
  border: 1px solid rgba(0,0,0,.12);
}

.stickywa__label{
  font-size: 14px;
  letter-spacing: -0.01em;
}

.stickywa__sub{
  font-size: 12px;
  font-weight: 650;
  opacity: .8;
}

/* Only show on mobile */
@media (max-width: 820px){
  .stickywa{display: flex;}
  /* prevent sticky bar covering footer content */
  body{padding-bottom: 74px;}
}

/* Facebook embed polish */
.fb-page,
.fb-page iframe{
  border-radius: 14px;
  overflow: hidden;
}

#socials .card{
  background: rgba(18,18,26,.55);
}

.socialBtns{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.sbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.sbtn:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.18);
}

/* FORCE hero content higher (override any earlier rules) */
.hero{
  align-items: flex-start !important;
  padding-top: 90px !important;
}

.hero__content{
  align-items: flex-start !important;
}

/* remove any downward push on the card */
.hero__card{
  margin-top: 0 !important;
  transform: translateY(0) !important;
}

.hero__availability{
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

