:root{
  --bg:#0b0b0f;
  --panel:#11121a;
  --panel2:#161622;
  --line:#242434;
  --text:#f5f5f5;
  --muted:#c9c9d6;
  --gold:#c6a14a;
  --gold2:#e0b95c;
  --blue:#101522;
  --shadow: 0 16px 40px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1100px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(198,161,74,.12), transparent 55%),
              radial-gradient(1000px 600px at 90% 10%, rgba(16,21,34,.8), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{color:var(--gold); text-decoration:none}
a:hover{color:var(--gold2)}

.container{
  width: min(var(--max), 92%);
  margin:auto;
  padding: 0 0 40px 0;
}

/* NAV */
nav{
  position: sticky;
  top:0;
  z-index:10;
  background: rgba(16,21,34,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  width: min(var(--max), 92%);
  margin:auto;
  padding: 14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand strong{
  font-family:'Playfair Display',serif;
  color:var(--gold);
  font-size: 18px;
}
.brand span{
  color: var(--muted);
  font-size: 12px;
}
.nav-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links a{
  color:#f1f1f6;
  font-weight:500;
  font-size:14px;
  opacity:.9;
}
.nav-links a:hover{opacity:1}

/* TYPOGRAPHY */
h1,h2,h3{
  font-family:'Playfair Display',serif;
  margin:0 0 14px 0;
}

h1{
  font-size:42px;
  color:var(--gold);
  letter-spacing:.5px;
}

h2{
  font-size:30px;
  color:var(--gold);
}

h3{
  font-size:20px;
  color:#f2e8cf;
}

p{
  color:var(--muted);
  line-height:1.75;
  margin:0 0 16px 0;
  text-align: justify;
  text-justify: inter-word;
}

/* SMALL TEXT REFINED */
.small{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.6;
  text-align:left; /* small helper text stays clean */
  opacity:.92;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(198,161,74,.10);
  border:1px solid rgba(198,161,74,.25);
  color:#f6e9c8;
  font-size: 13px;
  margin-bottom: 16px;
}

/* HERO */
.hero{
  padding: 70px 0 40px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items:stretch;
}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

/* MEDIA BLOCK */
.hero-media{
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow:hidden;
  background: #0f0f16;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 320px;
}

/* Premium glow */
.hero-media::before{
  content:"";
  position:absolute;
  inset:-20px;
  background: radial-gradient(closest-side, rgba(198,161,74,.28), transparent 70%);
  filter: blur(16px);
  opacity: .85;
  pointer-events:none;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  position: relative;
  z-index: 1;
}

.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 16px;
}
.badge{
  font-size: 12px;
  color:#e9e9f3;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(17,18,26,.7);
}

/* BUTTONS */
.btn{
  background: var(--gold);
  color:#000;
  padding: 14px 22px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  border:none;
  cursor:pointer;
  transition: .2s ease;
}
.btn:hover{
  background: var(--gold2);
  transform: translateY(-2px);
}
.btn.ghost{
  background: transparent;
  color: var(--gold);
  border:1px solid rgba(198,161,74,.35);
}
.btn-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 20px;
}

/* SECTIONS */
.section{
  padding: 50px 0;
  border-top: 1px solid rgba(36,36,52,.7);
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* CARDS – Elite Motion */
.card{
  background: rgba(17,18,26,.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover{
  transform: translateY(-5px);
  border-color: rgba(198,161,74,.45);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

/* Center headings inside cards */
.card h1,
.card h2,
.card h3{
  text-align:center;
  margin-bottom:14px;
}

/* Justify card body text */
.card p{
  text-align: justify;
  text-justify: inter-word;
}

.hr{
  height:1px;
  background: rgba(36,36,52,.7);
  margin: 18px 0;
}

.cta{
  background: linear-gradient(180deg, rgba(198,161,74,.14), rgba(17,18,26,.72));
  border: 1px solid rgba(198,161,74,.22);
}

/* FORM */
form .field{ margin: 12px 0; }

label{
  display:block;
  font-size: 13px;
  color:#e9e9f3;
  margin-bottom: 6px;
}

.req{color: var(--gold2); margin-left: 4px;}

input, textarea, select{
  width:100%;
  padding: 12px;
  background: var(--panel2);
  border:1px solid #2a2a35;
  color: var(--text);
  border-radius: 12px;
  outline:none;
}

input:focus, textarea:focus, select:focus{
  border-color: rgba(198,161,74,.5);
  box-shadow: 0 0 0 4px rgba(198,161,74,.12);
}

.help{
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.checkbox-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 14px;
  background: rgba(17,18,26,.55);
  border:1px solid var(--line);
  border-radius: 12px;
}

/* FOOTER */
footer{
  margin-top: 60px;
  padding: 40px 0 70px 0;
  border-top: 1px solid rgba(36,36,52,.7);
  color: var(--muted);
  font-size: 13px;
  text-align:center;
}

/* Scroll reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1{ transition-delay: .08s; }
.reveal.delay-2{ transition-delay: .16s; }
.reveal.delay-3{ transition-delay: .24s; }

/* Hide selected visuals on mobile */
@media (max-width: 700px){
  .hide-mobile{ display:none !important; }
  .card:hover{ transform:none; }
}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  h1{font-size:34px}
}