:root{
  --bg:#0b0f12;
  --bg-alt:#0f1418;
  --text:#f3efe6;
  --muted:#b9b2a4;
  --gold:#c8a24a;
  --gold-soft:#e8d089;
  --border:rgba(200,162,74,.25);
  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:Georgia, serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 15% -10%, rgba(31,58,46,.35), transparent 60%),
    radial-gradient(700px 500px at 85% 0%, rgba(200,162,74,.12), transparent 55%),
    var(--bg);
}

a{ color:inherit; }

/* Layout */
.container{
  max-width:1150px;
  margin:0 auto;
  padding:0 28px;
}

/* ================= HEADER ================= */
.header{
  background:#0e1317;
  border-bottom:1px solid var(--border);
}

.header .container{
  max-width:none;
  padding-left:14px;
  padding-right:14px;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:120px;
  padding:10px 0;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.site-logo{
  height:150px;
  width:auto;
  display:block;
}

/* Nav */
.links{
  display:flex;
  gap:32px;
  align-items:center;
  margin-left:auto;
  justify-content:flex-end;
  padding-right:22px;
}

.links a{
  color:var(--muted);
  text-decoration:none;
  font-size:.95rem;
  letter-spacing:.4px;
  transition:.2s ease;
}

.links a:hover{ color:var(--gold); }

/* Buttons */
.btn{
  padding:12px 22px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold-soft),var(--gold));
  color:#0a0a0a;
  font-weight:700;
  border:1px solid rgba(200,162,74,.35);
  cursor:pointer;
  transition:.2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.btn:hover{ filter:brightness(1.08); }

.btn-ghost{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
}

.btn-small{
  padding:8px 14px;
  font-size:.85rem;
}

.btn-wide{
  width:100%;
  margin-top:12px;
}

.links a.btn,
.links a.btn:visited,
.links a.btn:hover{
  color:#0a0a0a;
}

/* ================= HERO ================= */
.hero{
  padding:120px 0 90px;
  text-align:center;
}

.hero h1{
  font-size:3.55rem;
  margin:0;
  line-height:1.05;
  letter-spacing:.2px;
  text-shadow: 0 10px 40px rgba(0,0,0,.45);
}

.hero .sub{
  color:var(--muted);
  max-width:760px;
  margin:18px auto 0;
  font-size:1.1rem;
  line-height:1.65;
}

.cta{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.cta .btn{ min-width:210px; }
.cta .btn-ghost{ min-width:190px; }

/* Sections */
.section{ padding:110px 0; }

.section.alt{
  background:var(--bg-alt);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

h2{
  font-size:2.2rem;
  margin:0 0 40px;
  text-align:center;
}

.muted{ color:var(--muted); }
.small{ font-size:.9rem; }
.tiny{ font-size:.85rem; }

.reviews-sub{
  text-align:center;
  max-width:760px;
  margin:0 auto 26px;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.card{
  padding:32px;
  border-radius:var(--radius);
  background:#11161a;
  border:1px solid var(--border);
  transition:.2s ease;
}

.card:hover{ border-color:var(--gold); }

.card h3{ margin:0 0 10px; }

/* Forms */
form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:.9rem;
  color:var(--muted);
}

input, textarea{
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#0d1216;
  color:var(--text);
}

input:focus, textarea:focus{
  outline:none;
  border-color:var(--gold);
}

/* Footer */
.footer{
  padding:60px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:.85rem;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.footer-right a{
  color: var(--gold);
  text-decoration:none;
  font-weight:600;
}

.footer-right a:hover{ text-decoration:underline; }

/* Contact */
.contact-line{ margin: 18px 0; }

.contact-label{
  display:block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: .6;
  margin-bottom: 6px;
}

.contact-email{
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}

.contact-email:hover{ text-decoration: underline; }

a[href^="mailto:"]{
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

a[href^="mailto:"]:hover{ text-decoration: underline; }

/* =========================
   Reviews + Gradual Stars
   ========================= */
.review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.review-badge{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:.8rem;
  color:var(--muted);
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  padding:6px 10px;
  border-radius:999px;
}

.star-rating,
.star-input{
  display:inline-flex;
  gap:6px;
  align-items:center;
  user-select:none;
}

.star-rating .star{
  font-size:1.25rem;
  line-height:1;
  color: rgba(200,162,74,.30);
}

.star-rating .star.filled{
  color: var(--gold);
}

.star-input .star{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
  font-size:1.35rem;
  line-height:1;
  color: rgba(200,162,74,.30);
  transition: transform .12s ease, color .12s ease, filter .12s ease;
}

.star-input .star:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.star-input .star.filled{
  color: var(--gold);
}

.review-form-wrap{ margin-top:28px; }
.review-form-card{ max-width:820px; margin:0 auto; }

/* =========================
   Chat Widget (Liquid Glass) — NO SHIMMER
   ========================= */
.chat-launcher{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold-soft),var(--gold));
  color:#0a0a0a;
  font-weight:900;
  border:1px solid rgba(200,162,74,.40);
  cursor:pointer;
  box-shadow:0 18px 45px rgba(0,0,0,.45);
}

.chat-launcher span{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.chat-backdrop{
  position:fixed;
  inset:0;
  z-index:9998;
  background:rgba(0,0,0,.30);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease;
}

.chat-backdrop.open{
  opacity:1;
  pointer-events:auto;
}

.chat-panel{
  position:fixed;
  right:18px;
  bottom:76px;
  z-index:9999;
  width:min(390px, calc(100vw - 36px));
  border-radius:20px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 24px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.18);
  display:none;
  transform: translateY(10px) scale(.985);
  opacity:0;
  pointer-events:none;
  transition:
    opacity .2s ease,
    transform .25s cubic-bezier(.22,1,.36,1);
}

.chat-panel.open{
  opacity:1;
  transform: translateY(0) scale(1);
  pointer-events:auto;
}

.chat-header{
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.chat-close{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  color: var(--text);
  border-radius:12px;
  padding:6px 10px;
  cursor:pointer;
}

.chat-body{
  padding:12px 14px;
  height:320px;
  overflow:auto;
  overscroll-behavior: contain;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.bubble{
  max-width:88%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:.95rem;
  line-height:1.35;
}

.bubble.bot{
  background: rgba(255,255,255,.06);
  align-self:flex-start;
}

.bubble.me{
  background: rgba(200,162,74,.18);
  align-self:flex-end;
}

.quick-replies{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:10px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
}

.reply{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius:999px;
  padding:8px 10px;
  cursor:pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:.9rem;
}

.reply:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}

.chat-input{
  display:flex;
  gap:10px;
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
}

.chat-input input{
  flex:1;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.chat-send{
  padding:10px 12px;
  border-radius:14px;
  background: linear-gradient(135deg,var(--gold-soft),var(--gold));
  border:1px solid rgba(200,162,74,.35);
  color:#0a0a0a;
  font-weight:900;
  cursor:pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Responsive */
@media(max-width:900px){
  .site-logo{ height:110px; }

  .nav{
    flex-direction:column;
    gap:14px;
    padding:16px 0;
    min-height:auto;
  }

  .links{
    flex-wrap:wrap;
    justify-content:center;
    margin-left:0;
    padding-right:0;
    gap:18px;
  }

  .hero{ padding:95px 0 75px; }
  .hero h1{ font-size:2.7rem; }

  .cta .btn{ min-width:190px; }

  .footer-inner{
    flex-direction:column;
    gap:8px;
  }
}

@media (max-width:600px){
  .chat-panel{
    right:12px;
    bottom:74px;
    width: calc(100vw - 24px);
  }
  .chat-launcher{
    right:12px;
    bottom:12px;
  }
}
