: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 (clean, no hamburger) + transparent on scroll
   ========================================================= */
nav,
.topnav{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(16,21,34,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36,36,52,.75);
  transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}

nav.scrolled,
.topnav.scrolled{
  background: rgba(16,21,34,.62);
  border-bottom-color: rgba(36,36,52,.55);
  backdrop-filter: blur(14px);
}

.nav-inner{
  width: min(var(--max), 92%);
  margin:auto;
  padding: 14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  transition: padding .2s ease;
}

nav.scrolled .nav-inner,
.topnav.scrolled .nav-inner{
  padding: 10px 0;
}

/* Brand centered: logo above slogan */
.brand-link{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  text-decoration:none;
  min-width: 220px;
}

.brand-logo{
  height: 36px;
  width:auto;
  display:block;
  object-fit:contain;
  filter: drop-shadow(0 0 12px rgba(198,161,74,.22));
  transition: .2s ease;
}

.brand-logo:hover{
  filter: drop-shadow(0 0 16px rgba(198,161,74,.45));
}

.brand-sub{
  color: var(--muted);
  font-size: 12px;
  opacity: .7;
  line-height: 1.2;
  text-align:center;
}

/* Links */
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap: nowrap;
  justify-content:flex-end;
}

.nav-links a{
  color:#f1f1f6;
  font-weight:500;
  font-size:14px;
  opacity:.9;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: .15s ease;
  white-space: nowrap;
}

.nav-links a:hover{
  opacity:1;
  background: rgba(198,161,74,.10);
  border-color: rgba(198,161,74,.18);
}

/* Active page highlight */
.nav-links a.active{
  opacity:1;
  background: rgba(198,161,74,.14);
  border-color: rgba(198,161,74,.28);
  color:#fff;
}

/* Apply CTA only appears buttoned when ACTIVE */
.nav-links .nav-cta{
  background: transparent;
  border-color: transparent;
  color:#f1f1f6;
}

.nav-links .nav-cta.active{
  background: rgba(198,161,74,.16);
  border-color: rgba(198,161,74,.45);
  color: var(--gold2);
}

/* Responsive without hamburger */
@media (max-width: 980px){
  .nav-inner{
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .brand-link{ align-items:center; min-width:auto; }
  .brand-sub{ text-align:center; }

  .nav-links{
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-links a{
    font-size: 13px;
    padding: 6px 10px;
  }
}

/* =========================================================
   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;
  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
   ========================================================= */
.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;
  gap:10px;
}

.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;
}

/* Button spinner */
.spinner{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.25);
  border-top-color: rgba(0,0,0,.85);
  animation: spin .8s linear infinite;
}

@keyframes spin{
  to { transform: rotate(360deg); }
}

/* =========================================================
   SECTIONS / GRIDS
   ========================================================= */
.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 (micro hover 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);
}

/* =========================================================
   FORMS
   ========================================================= */
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
   ========================================================= */
.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 layout */
@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}
}