/* ============================
   HOUSE OF ELÉVARA — LUXURY UI
   (Drop-in replacement, same classes)
   ============================ */

/* ===== Fonts (Luxury Headline + Clean Body) ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== Reset ===== */
*{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px}
body{
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:#050505;
  color:#fff;
  overflow-x:hidden;
}

/* Luxury background texture + soft spotlight */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(210,170,80,.16), transparent 60%),
    radial-gradient(900px 700px at 80% 20%, rgba(255,255,255,.06), transparent 55%),
    radial-gradient(1200px 900px at 50% 90%, rgba(210,170,80,.08), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,0));
  mix-blend-mode: normal;
  opacity:1;
}

body.no-scroll{overflow:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
.container{max-width:1180px;margin:0 auto;padding:20px}

/* ===== Theme Tokens ===== */
:root{
  --bg:#050505;
  --panel: rgba(255,255,255,.035);
  --panel2: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.10);
  --muted: rgba(255,255,255,.72);

  /* Champagne gold (more luxury than neon gold) */
  --gold:#D8B65A;
  --gold2:#F3DD9B;
  --goldLine: rgba(216,182,90,.30);

  --radius:18px;
  --radiusSm:14px;
}

/* ===== Animations ===== */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}
@keyframes glowPulse{
  0%,100%{box-shadow:0 10px 40px rgba(0,0,0,.48)}
  50%{box-shadow:0 18px 70px rgba(216,182,90,.10)}
}

/* ===== Focus (Luxury + Accessibility) ===== */
:focus-visible{
  outline: 2px solid rgba(216,182,90,.55);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ===== Header ===== */
.topbar{
  position:sticky; top:0; z-index:99999;
  background:rgba(5,5,5,.76);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  position:relative;
  z-index:99999;
}

/* Brand layout */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

/* Brand plaque (refined for Elévara) */
.brand__glam3d{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 6px;
  font-size: 16px;
  color: var(--gold2);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(216,182,90,.22), rgba(255,255,255,.06) 45%, rgba(0,0,0,.65) 100%);
  border: 1px solid var(--goldLine);
  text-shadow:
    0 1px 0 rgba(0,0,0,.25),
    0 10px 22px rgba(0,0,0,.55),
    0 0 18px rgba(216,182,90,.18);
  box-shadow:
    0 16px 44px rgba(0,0,0,.60),
    inset 0 1px 0 rgba(255,255,255,.10);
  transform: translateZ(0);
  animation: floaty 4.2s ease-in-out infinite;
}

.brand__subwrap{display:flex;flex-direction:column;gap:2px}
.brand__subMain{
  font-size: 13px;
  color: rgba(255,255,255,.84);
  letter-spacing: .2px;
}
.brand__subSmall{
  font-size: 12px;
  color: rgba(216,182,90,.90);
}

/* Desktop nav */
.nav{display:flex;gap:18px;align-items:center}
.nav__link{
  text-decoration:none;
  color:rgba(255,255,255,.74);
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition:.18s;
}
.nav__link:hover{color:var(--gold2)}
.nav__link.is-active{
  color:var(--gold2);
  background:rgba(216,182,90,.09);
  border:1px solid rgba(216,182,90,.20);
}

/* Mobile menu button (top right) */
.menuBtn{
  display:none;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
  pointer-events:auto;
  position:relative;
  z-index:100000;
}
.menuBtn:hover{
  border-color: rgba(216,182,90,.30);
  background: rgba(216,182,90,.08);
}

/* ===== Mobile Menu ===== */
.mobileMenu{display:none}

/* when open */
.mobileMenu.is-open{
  display:block;
  position:fixed;
  inset:0;
  z-index:999999;
}

/* backdrop */
.mobileMenu__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.70);
  border:0;
  width:100%;
  height:100%;
  cursor:pointer;
}

/* sliding panel */
.mobileMenu__panel{
  position:absolute;
  right:0; top:0;
  height:100%;
  width:min(86vw,370px);
  background: linear-gradient(180deg, rgba(10,10,10,.98), rgba(6,6,6,.98));
  border-left:1px solid rgba(255,255,255,.10);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  box-shadow:-18px 0 60px rgba(0,0,0,.70);
  transform: translateX(110%);
  transition: transform .26s ease;
}
.mobileMenu.is-open .mobileMenu__panel{transform: translateX(0)}

/* top row */
.mobileMenu__topRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.mobileMenu__brand{
  font-weight: 900;
  letter-spacing:.8px;
  color: rgba(255,255,255,.92);
}
.mobileMenu__close{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
}
.mobileMenu__close:hover{
  border-color: rgba(216,182,90,.30);
  background: rgba(216,182,90,.08);
}

/* dropdown */
.mobileMenu__dropdownBtn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#fff;
  cursor:pointer;
}
.mobileMenu__dropdown{
  display:none;
  margin-top: 6px;
  gap:10px;
}
.mobileMenu__dropdown.is-open{
  display:flex;
  flex-direction:column;
}
.mobileMenu__link{
  text-decoration:none;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.035);
}
.mobileMenu__link:hover{
  border-color:rgba(216,182,90,.35);
  background:rgba(216,182,90,.08);
  color:var(--gold2);
}
.mobileMenu__divider{
  height:1px;
  background: rgba(255,255,255,.10);
  margin: 10px 0;
}
.mobileMenu__cta{
  display:block;
  text-decoration:none;
  text-align:center;
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid rgba(216,182,90,.26);
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color:#0b0b0b;
}
.mobileMenu__cta.ghost{
  background: rgba(255,255,255,.04);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
}
.mobileMenu__cta.ghost:hover{
  border-color: rgba(216,182,90,.28);
  background: rgba(216,182,90,.08);
}

/* ===== Buttons ===== */
.btnRow{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  text-decoration:none;
  border-radius:14px;
  padding:12px 16px;
  font-weight:900;
  letter-spacing:.2px;
  border:1px solid transparent;
  transition:.18s transform,.18s background,.18s border,.18s color,.18s box-shadow;
  will-change: transform;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 52px rgba(0,0,0,.42);
}
.btn:active{transform:translateY(0)}
.btn--gold{
  background:linear-gradient(180deg,var(--gold2),var(--gold));
  color:#0b0b0b;
  border-color:rgba(216,182,90,.35);
}
.btn--ghost{
  background:rgba(255,255,255,.03);
  border-color:rgba(216,182,90,.35);
  color:var(--gold2);
}
.btn--ghost:hover{
  background:rgba(216,182,90,.08);
}
.btn--dark{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  color:#fff;
}
.btn--dark:hover{
  border-color: rgba(216,182,90,.24);
  background: rgba(255,255,255,.08);
}

/* ===== Home Layout ===== */
.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  padding:30px 0 10px;
  align-items:start;
  animation:fadeUp .55s ease both;
  position:relative;
  z-index:1;
}

/* Hero typography (luxury) */
.hero__title{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size:48px;
  line-height:1.05;
  margin-bottom:14px;
  letter-spacing:.2px;
}
.hero__accent{
  display:block;
  color:var(--gold2);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:800;
  letter-spacing: .6px;
  font-size: 15px;
  text-transform: uppercase;
  margin-top: 10px;
}
.hero__copy{color:var(--muted);max-width:68ch;font-size:15px;line-height:1.6}

/* Cards */
.brandCard{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120% 140% at 20% 10%, rgba(216,182,90,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding:18px;
  animation:glowPulse 4.6s ease-in-out infinite;
}
.brandCard__logo{
  width:100%;
  max-width:360px;
  margin:0 auto;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.30);
}
.brandCard__text{margin-top:14px}
.brandCard__text h3{
  font-size:18px;
  margin-bottom:8px;
  letter-spacing:.3px;
}
.brandCard__text p{color:rgba(255,255,255,.72);margin-bottom:12px;line-height:1.6}

/* info cards */
.infoGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}
.infoCard{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  padding:12px;
  border-radius:14px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  transition:.18s;
  line-height:1.45;
}
.linkCard{text-decoration:none}
.linkCard:hover{
  border-color:rgba(216,182,90,.35);
  background:rgba(216,182,90,.06);
  color:var(--gold2);
  transform:translateY(-1px);
}

/* ready block */
.readyBlock{
  margin-top:18px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 600px at 15% 0%, rgba(216,182,90,.10), transparent 60%),
    rgba(255,255,255,.03);
  padding:16px;
  border-radius:18px;
}
.readyBlock h3{
  margin-bottom:6px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight:600;
  letter-spacing:.2px;
}
.readyBlock p{color:rgba(255,255,255,.74);font-size:14px;line-height:1.6}

/* page header */
.pageHeader{padding:18px 0 10px;animation:fadeUp .55s ease both}
.pageHeader h1{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size:38px;
  line-height:1.1;
  margin-bottom:10px;
}
.pageHeader p{color:rgba(255,255,255,.72);max-width:76ch;line-height:1.6}

/* helper cards */
.card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:18px;
  animation:fadeUp .55s ease both;
}
.cardGlow{
  border-radius:18px;
  border:1px solid rgba(216,182,90,.22);
  background:
    radial-gradient(900px 600px at 18% 0%, rgba(216,182,90,.12), transparent 58%),
    linear-gradient(180deg,rgba(216,182,90,.06),rgba(255,255,255,.03));
  padding:18px;
  animation:fadeUp .55s ease both;
}
.goldTitle{color:var(--gold2);margin-bottom:8px}
.muted{color:rgba(255,255,255,.72)}
.tiny{font-size:12px}
.cleanList{margin-top:10px;padding-left:18px}
.cleanList li{margin:8px 0;color:rgba(255,255,255,.72);line-height:1.55}

/* grids */
.grid2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.priceTag{
  font-size:34px;
  font-weight:900;
  color:var(--gold2);
  margin:10px 0 6px;
}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 20px;
  color:rgba(255,255,255,.65);
  margin-top:34px;
}
.footer__muted{font-size:12px;color:rgba(255,255,255,.55)}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero{grid-template-columns:1fr}
  .nav{display:none}
  .menuBtn{display:inline-flex}
  .infoGrid{grid-template-columns:1fr}
  .hero__title{font-size:40px}
  .grid2{grid-template-columns:1fr}
}
