:root{
  --bg:#0e201c;
  --bg2:#0b1714;
  --card:#102622;
  --muted:#cfe0da;
  --text:#f2f6f5;
  --gold:#c6a777;
  --gold2:#e6d1ad;
  --line: rgba(198,167,119,.18);
  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1160px;
}

*{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: radial-gradient(1200px 650px at 20% -10%, rgba(198,167,119,.14), transparent 60%),
              radial-gradient(1000px 700px at 90% 10%, rgba(198,167,119,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto}

.topbar{
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 0;
  gap: 12px;
}
.topbar__left{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.topbar__item{display:flex; gap:10px; align-items:center; font-size:13px; color: rgba(242,246,245,.86)}
.topbar__sep{opacity:.45}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(198,167,119,.14);
}
.topbar__right{display:flex; align-items:center; gap:10px}
.iconbtn{
  width:36px; height:36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(16,38,34,.5);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.iconbtn svg{width:18px; height:18px; fill: rgba(242,246,245,.88)}
.iconbtn:hover{transform: translateY(-1px); border-color: rgba(198,167,119,.45); background: rgba(198,167,119,.08)}

.header{
  position: sticky; top:0; z-index:50;
  border-bottom: 1px solid var(--line);
  background: rgba(14,32,28,.65);
  backdrop-filter: blur(14px);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{
  height: 44px;
  width:auto;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.18));
}

.nav{display:flex; align-items:center; gap:22px}
.nav a{
  font-size: 14px;
  color: rgba(242,246,245,.86);
  padding: 10px 8px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover{background: rgba(198,167,119,.08); color: var(--text)}
.nav a.active{background: rgba(198,167,119,.15); color: var(--text); font-weight:600}
.nav__cta{display:flex; align-items:center; gap:10px; margin-left:8px}

.navToggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(16,38,34,.5);
}
.navToggle span{
  display:block; height:2px; width:20px;
  background: rgba(242,246,245,.9);
  margin: 5px auto;
  border-radius: 10px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(198,167,119,.45);
  background: linear-gradient(180deg, rgba(198,167,119,.22), rgba(198,167,119,.06));
  color: var(--text);
  font-weight: 600;
  letter-spacing:.2px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(230,209,173,.9)}
.btn--ghost{
  border:1px solid var(--line);
  background: rgba(16,38,34,.35);
  color: rgba(242,246,245,.92);
}
.btn--lg{padding: 14px 18px; border-radius: 16px}
.btn--sm{padding: 10px 12px; border-radius: 12px; font-size: 13px}
.w100{width:100%}

.hero{
  position:relative;
  padding: 58px 0 30px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:-20px -20px auto -20px;
  height: 360px;
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(198,167,119,.20), transparent 60%),
    radial-gradient(600px 300px at 90% 30%, rgba(198,167,119,.16), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.12), transparent);
  pointer-events:none;
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 26px;
  align-items:center;
}
.badge{
  display:inline-flex; gap:10px; align-items:center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(16,38,34,.45);
  border-radius: 999px;
  width: fit-content;
}
.badge img{width:26px; height:26px; border-radius: 10px; object-fit:cover}
.badge span{font-size:13px; color: rgba(242,246,245,.88); font-weight: 600}

.hero h1{
  margin: 14px 0 12px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.lead{
  margin:0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(242,246,245,.86);
  max-width: 52ch;
}
.hero__actions{display:flex; gap:12px; margin-top: 18px; flex-wrap:wrap}

.hero__meta{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pill{
  border: 1px solid var(--line);
  background: rgba(16,38,34,.35);
  border-radius: var(--radius);
  padding: 14px;
}
.pill strong{display:block; font-size:14px; margin-bottom:6px}
.pill span{font-size:13px; color: rgba(242,246,245,.78)}

.hero__media{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.mediaCard{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(198,167,119,.22);
  box-shadow: var(--shadow);
  transform: translateY(6px);
}
.mediaCard img{height: 330px; width:100%; object-fit:cover; filter: contrast(1.03) saturate(1.02)}

/* video background inside mediaCard */
.mediaVideo {
  width: 100%;
  height: 330px; /* same height as the image */
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.mediaCard__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.32));
}
.mediaStack{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mediaStack img{
  height: 170px;
  width:100%;
  object-fit:cover;
  border-radius: var(--radius);
  border: 1px solid rgba(198,167,119,.18);
  box-shadow: 0 16px 45px rgba(0,0,0,.25);
}

.section{padding: 70px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap: 18px;
  margin-bottom: 22px;
}
.section__head h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.3px;
}
.section__head p{
  margin:0;
  color: rgba(242,246,245,.80);
  max-width: 64ch;
  line-height: 1.6;
}

.grid{display:grid; gap: 14px}
.cards{grid-template-columns: 1fr 1fr 1fr}

.card{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(16,38,34,.38);
  padding: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,.16);
}
.card__icon{
  width:44px; height:44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(198,167,119,.12);
  border: 1px solid rgba(198,167,119,.25);
  margin-bottom: 12px;
  font-size: 18px;
}
.card h3{margin: 0 0 8px; font-size: 16px}
.card p{margin:0 0 12px; color: rgba(242,246,245,.82); line-height: 1.65}

.list{margin:0; padding-left: 18px; color: rgba(242,246,245,.80)}
.list li{margin: 8px 0; font-size: 13px}
.link{display:inline-block; margin-top: 12px; color: var(--gold2); font-weight: 600; font-size: 13px}
.card--highlight{
  border-color: rgba(198,167,119,.35);
  background: linear-gradient(180deg, rgba(198,167,119,.10), rgba(16,38,34,.35));
}
.miniCtas{display:flex; gap:10px; margin-top: 12px; flex-wrap:wrap}

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items:center;
}
.lead2{color: rgba(242,246,245,.88); line-height:1.65; font-size:16px}

.highlights{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.highlight{
  border: 1px solid var(--line);
  background: rgba(16,38,34,.30);
  border-radius: var(--radius);
  padding: 14px;
}
.highlight strong{display:block; margin-bottom:6px}
.highlight span{font-size:13px; color: rgba(242,246,245,.78)}

.aboutMedia{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(198,167,119,.18);
  box-shadow: var(--shadow);
}
.aboutMedia img{height: 420px; width:100%; object-fit:cover}
.aboutBadge{
  position:absolute;
  left: 14px; bottom: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(198,167,119,.30);
  background: rgba(14,32,28,.62);
  backdrop-filter: blur(12px);
}
.aboutBadge span{display:block; font-weight: 800; letter-spacing: .6px}
.aboutBadge small{opacity:.86}

.team{grid-template-columns: 1fr 1fr 1fr}
.profile{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(16,38,34,.34);
  box-shadow: 0 18px 55px rgba(0,0,0,.16);
}
.profile img{height: 260px; width:100%; object-fit:cover}
.profile__body{padding: 16px}
.profile__body h3{margin: 0 0 6px; font-size: 16px}
.profile__body p{margin:0 0 12px; color: rgba(242,246,245,.82); line-height:1.6}
.profile__actions{display:flex; gap:10px; flex-wrap:wrap}


/* generic utility for breadcrumbs and FAQ if needed */
.breadcrumbs,
.breadcrumb {
  font-size: 13px;
  color: rgba(242,246,245,.75);
  margin-bottom: 24px;
}
.breadcrumbs a,
.breadcrumb a{color: rgba(242,246,245,.85); text-decoration:none;}
.breadcrumbs a:hover,
.breadcrumb a:hover{text-decoration:underline;}

.faq details{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 14px;
  margin-bottom: 12px;
  background: rgba(16,38,34,.30);
}
.faq summary{
  cursor: pointer;
  font-weight: 600;
  outline: none;
}
.faq summary::-webkit-details-marker{display:none;}
.faq details[open] summary{color: var(--gold2);}

.cta-section{
  background: rgba(198,167,119,.08);
  padding: 40px 0;
  text-align: center;
  margin-top: 40px;
}
.cta-section .btn{margin: 0 8px;}

.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items:start;
}
.contactCards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.contactCard{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(16,38,34,.30);
  padding: 14px;
  transition: transform .2s ease, border-color .2s ease;
}
.contactCard:hover{transform: translateY(-2px); border-color: rgba(198,167,119,.35)}
.contactCard strong{display:block; margin-bottom: 6px}
.contactCard span{font-size:13px; color: rgba(242,246,245,.78)}

.formCard{
  border-radius: var(--radius2);
  border: 1px solid rgba(198,167,119,.22);
  background: rgba(16,38,34,.40);
  padding: 18px;
  box-shadow: var(--shadow);
}
.formCard h3{margin: 0 0 6px}
.formCard p{margin:0 0 14px; color: rgba(242,246,245,.80); line-height:1.6; font-size: 13px}

form label{display:block; font-size: 13px; color: rgba(242,246,245,.86); margin-bottom: 10px}
input, select, textarea{
  width:100%;
  margin-top: 6px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(8,16,14,.35);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  font-family: inherit;
}
textarea{resize: vertical; min-height: 110px}
input:focus, select:focus, textarea:focus{border-color: rgba(198,167,119,.55)}
.fineprint{display:block; margin-top: 10px; opacity: .72; font-size: 12px; line-height:1.5}

.footer{
  padding: 42px 0 18px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.10);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items:start;
}
.footer__brand img{height: 40px; width:auto; margin-bottom: 10px}
.footer__brand p{margin:0; color: rgba(242,246,245,.76); line-height:1.6; font-size: 13px}
.footer__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.footer__cols h4{margin: 0 0 10px; font-size: 14px}
.footer__cols a{
  display:block;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(242,246,245,.78);
}
.footer__cols a:hover{color: var(--text)}
.footer__bottom{
  display:flex; justify-content:space-between; gap: 10px; flex-wrap:wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: rgba(242,246,245,.72);
  font-size: 12px;
}
.muted{opacity:.75}

/* WhatsApp Floating */
.waFloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(198,167,119,.28);
  background: rgba(14,32,28,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  z-index: 60;
  transition: transform .2s ease, border-color .2s ease;
}
.waFloat:hover{transform: translateY(-2px); border-color: rgba(230,209,173,.9)}
.waFloat__icon{
  width: 40px; height: 40px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(198,167,119,.14);
  border: 1px solid rgba(198,167,119,.25);
}
.waFloat__icon svg{width: 20px; height: 20px; fill: rgba(242,246,245,.95)}
.waFloat__text strong{display:block; font-size: 13px}
.waFloat__text small{display:block; font-size: 12px; opacity:.8}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; }
  .hero__media{order:-1}
  .cards{grid-template-columns: 1fr}
  .twoCol{grid-template-columns: 1fr}
  .team{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .footer__inner{grid-template-columns: 1fr}
  .highlights{grid-template-columns: 1fr}
}
@media (max-width: 860px){
  .navToggle{display:block}
  .nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    margin: 0 12px 12px;
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background: rgba(14,32,28,.92);
    backdrop-filter: blur(14px);
  }
  .nav.is-open{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__cta{margin-left:0; display:grid; grid-template-columns: 1fr 1fr; gap:10px}
  .hero__meta{grid-template-columns: 1fr}
  .contactCards{grid-template-columns: 1fr}
}