:root {
  --black-base: #050505;
  --black-soft: #0c0c0d;
  --black-card: #141414;
  --gold-light: #f5d78e;
  --gold-mid: #d4af37;
  --gold-deep: #b8860b;
  --gold-dark: #9a7b2f;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --white: #f7f3ea;
  --muted: #a89e88;
  --muted-dim: #6b6354;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gold-gradient: linear-gradient(135deg, #f5d78e 0%, #d4af37 45%, #9a7b2f 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--muted);
  background: var(--black-base);
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-loading #mainContent,
body.is-loading .header,
body.is-loading .footer,
body.is-loading .chat-launcher {
  visibility: hidden;
}

body.intro-complete #mainContent,
body.intro-complete .header,
body.intro-complete .footer,
body.intro-complete .chat-launcher {
  visibility: visible;
  animation: fadeUp 0.8s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

a { color: var(--gold-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

.container { width: min(1160px, 92vw); margin-inline: auto; }

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(20px);
  border-radius: 18px;
}

.glass-gold {
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.08) 0%, rgba(20, 20, 20, 0.9) 60%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(245, 215, 142, 0.15);
}

/* ─── Intro ─── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
}

.intro__layer { position: absolute; inset: 0; }

.intro__layer--smudge {
  background: linear-gradient(145deg, #1a1408 0%, #0a0a08 45%, #080806 100%);
  z-index: 1;
}

.intro__layer--smudge::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(120, 95, 40, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 72% 62%, rgba(90, 75, 35, 0.15) 0%, transparent 38%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}

.intro__layer--clean {
  z-index: 2;
  background: radial-gradient(ellipse at 60% 30%, #14110a 0%, var(--black-base) 70%);
  clip-path: inset(0 calc(100% - var(--wipe, 0%)) 0 0);
  --wipe: 0%;
}

.intro__wipe-track { position: absolute; inset: 0; z-index: 4; pointer-events: none; }

.intro__cloth {
  position: absolute;
  top: 50%;
  left: var(--cloth-x, -12%);
  width: clamp(140px, 22vw, 220px);
  height: clamp(90px, 14vw, 140px);
  transform: translate(-50%, -50%) rotate(-10deg);
  border-radius: 14px;
  background: linear-gradient(145deg, #f5d78e 0%, #d4af37 50%, #9a7b2f 100%);
  box-shadow:
    0 12px 44px var(--gold-glow),
    inset 0 2px 0 rgba(255, 248, 220, 0.5),
    inset 0 -6px 14px rgba(80, 60, 10, 0.4);
  overflow: hidden;
}

.intro__cloth-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  animation: clothShine 1.1s ease-in-out infinite;
}

@keyframes clothShine {
  0%, 100% { transform: translateX(-30%); }
  50% { transform: translateX(80%); }
}

.intro__mist {
  position: absolute;
  top: 42%;
  left: var(--cloth-x, -12%);
  width: 70px;
  height: 70px;
  transform: translate(-130%, -50%);
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(8px);
  animation: mistPulse 0.6s ease-in-out infinite;
}

@keyframes mistPulse {
  0%, 100% { opacity: 0.5; transform: translate(-130%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-130%, -50%) scale(1.25); }
}

.intro__copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}

.intro__tag {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}

.intro__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5rem);
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.intro__title span {
  display: block;
  font-family: var(--font);
  font-size: 0.22em;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.4em;
  margin-top: 0.6em;
  -webkit-text-fill-color: var(--gold-light);
}

.intro__motto {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--white);
}

.intro__status {
  margin-top: 0.85rem;
  color: var(--muted-dim);
  font-size: 0.9rem;
}

.intro__skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-mid);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.intro__skip:hover { background: rgba(212, 175, 55, 0.18); color: var(--gold-light); }

.intro--done { animation: introOut 0.7s var(--ease) forwards; }

@keyframes introOut { to { opacity: 0; visibility: hidden; } }

/* ─── Spray cursor ─── */
.cursor-spray {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  margin: -3px 0 0 -3px;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s, transform 0.12s ease-out;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
}

.cursor-spray.is-visible { opacity: 1; }
.cursor-spray.is-hover { transform: scale(1.9) !important; opacity: 0.6; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { display: flex; align-items: center; gap: 0.8rem; color: var(--white); }

.logo__mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(212, 175, 55, 0.1) 60%),
    var(--black-base);
  box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.5), 0 0 18px var(--gold-glow);
}

.logo__crescent {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold-light);
  border-right-color: var(--gold-mid);
  transform: rotate(-35deg);
}

.logo__sparkle {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  box-shadow: 0 0 8px var(--gold-light);
}

.logo__mark--sm { width: 38px; height: 38px; }

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.logo__text em {
  font-style: normal;
  font-family: var(--font);
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-mid);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 2rem; }

.nav a {
  color: rgba(247, 243, 234, 0.8);
  font-weight: 500;
  font-size: 0.88rem;
}

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

.nav__cta {
  background: var(--gold-gradient) !important;
  color: #1a1404 !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 100px;
  font-weight: 700 !important;
}

.nav__cta:hover { box-shadow: 0 0 24px var(--gold-glow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span { width: 22px; height: 2px; background: var(--gold-mid); border-radius: 2px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.9rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--gold-gradient);
  color: #1a1404;
  font-weight: 700;
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn--primary:hover { box-shadow: 0 12px 40px var(--gold-glow); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn--ghost:hover { border-color: var(--gold-mid); color: var(--gold-light); }

.btn--block { width: 100%; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 18%, rgba(212, 175, 55, 0.12), transparent),
    radial-gradient(ellipse 40% 35% at 8% 82%, rgba(245, 215, 142, 0.06), transparent);
  pointer-events: none;
}

.hero__bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero__bubbles .bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(245, 215, 142, 0.55), rgba(212, 175, 55, 0.12) 60%, transparent 70%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  animation: bubbleRise linear infinite;
}

@keyframes bubbleRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-110vh) translateX(var(--drift, 20px)); opacity: 0; }
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 6rem);
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero__stats { list-style: none; display: flex; gap: 2.5rem; }

.hero__stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.hero__stats span {
  font-size: 0.72rem;
  color: var(--muted-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── 3D scene ─── */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.scene-frame { position: relative; width: min(470px, 92vw); height: min(470px, 70vw); }

.scene-frame__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 0 60px rgba(212, 175, 55, 0.18),
    inset 0 0 50px rgba(212, 175, 55, 0.06);
  pointer-events: none;
  animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse { 0%, 100% { opacity: 0.65; } 50% { opacity: 1; } }

#scene3d {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.07) 0%, transparent 65%);
}

.scene-label {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dim);
  white-space: nowrap;
}

.scene-label__line { width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-mid), transparent); }

/* ─── Sections ─── */
.section-head { text-align: center; max-width: 34rem; margin: 0 auto 3.5rem; }

.section-label {
  display: block;
  color: var(--gold-mid);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}

.section-head p { color: var(--muted); }

/* ─── Services ─── */
.services { padding: 7rem 0; background: var(--black-soft); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  padding: 2rem;
  border-radius: 18px;
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(245, 215, 142, 0.12), transparent);
  transition: left 0.6s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card:hover::after { left: 120%; }

.card--featured {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.07) 0%, var(--black-card) 55%);
}

.card--addon { opacity: 0.92; }

.card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card__icon { color: var(--gold-light); font-size: 1.4rem; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }

.card ul { list-style: none; font-size: 0.85rem; color: var(--muted); }

.card li { padding: 0.3rem 0 0.3rem 1.1rem; position: relative; }

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  background: var(--gold-mid);
  border-radius: 50%;
}

/* ─── About ─── */
.about { padding: 7rem 0; }

.about__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: start; }

.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.about__content p { color: var(--muted); margin-bottom: 1.5rem; }

.check-list { list-style: none; }

.check-list li {
  padding: 0.45rem 0 0.45rem 1.7rem;
  position: relative;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-mid);
}

.about__panel { padding: 2.5rem; }

.about__panel h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.about__panel p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ─── Book ─── */
.book { padding: 7rem 0; background: linear-gradient(180deg, var(--black-base) 0%, var(--black-soft) 100%); }

.book .section-head h2, .book .section-head p { color: var(--white); }

.form { max-width: 620px; margin: 0 auto; padding: 2.5rem; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { margin-bottom: 1.2rem; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.92rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder, .field textarea::placeholder { color: var(--muted-dim); }

.field select { color: var(--white); }
.field select option { background: var(--black-card); color: var(--white); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.field input.error, .field select.error, .field textarea.error { border-color: #e06a5a; }

.form__hint { text-align: center; margin-top: 1rem; font-size: 0.88rem; min-height: 1.3em; }
.form__hint.success { color: var(--gold-light); }
.form__hint.error { color: #e06a5a; }

.appointments-list {
  max-width: 620px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.appointments-list h3 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 0.75rem; }
.appointments-list ul { list-style: none; color: var(--muted); font-size: 0.88rem; }
.appointments-list li { padding: 0.65rem 0; border-bottom: 1px solid rgba(212, 175, 55, 0.1); }

/* ─── Contact ─── */
.contact { padding: 7rem 0; background: var(--black-soft); }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact__info > p { color: var(--muted); }

.contact__details { list-style: none; margin-top: 2rem; }
.contact__details li { margin-bottom: 1.5rem; }

.contact__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-mid);
  margin-bottom: 0.3rem;
}

.contact__details a { font-size: 1.05rem; font-weight: 600; color: var(--white); }
.contact__details a:hover { color: var(--gold-light); }

/* ─── Footer ─── */
.footer { padding: 3rem 0; border-top: 1px solid rgba(212, 175, 55, 0.12); }

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand { display: flex; align-items: center; gap: 1rem; }

.footer__brand p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.3;
}

.footer__brand small {
  font-family: var(--font);
  font-size: 0.66rem;
  color: var(--gold-mid);
  letter-spacing: 0.06em;
  font-style: italic;
}

.footer__divider { flex: 1; min-width: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent); position: relative; }

.footer__sparkle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: var(--gold-light);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  box-shadow: 0 0 10px var(--gold-light);
}

.footer__nav { display: flex; gap: 1.5rem; }
.footer__nav a { color: var(--muted); font-size: 0.88rem; }

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-dim);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

/* ─── Chat ─── */
.chat-launcher {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #1a1404;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.chat-launcher:hover { transform: scale(1.08); }

.chat-launcher__badge {
  position: absolute;
  top: -2px; right: -2px;
  background: #c0392b;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 199;
  width: min(380px, calc(100vw - 2rem));
  height: min(520px, calc(100vh - 7rem));
  background: var(--black-card);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  flex-direction: column;
  transform: scale(0.92) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

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

.chat-panel__head {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--white);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 20px 20px 0 0;
}

.chat-panel__head strong { font-family: var(--font-display); font-size: 1.05rem; }
.chat-panel__head span { font-size: 0.72rem; color: var(--gold-mid); display: block; }

.chat-close { background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; }

.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.65rem; }

.chat-msg { max-width: 88%; padding: 0.6rem 0.9rem; border-radius: 14px; font-size: 0.88rem; line-height: 1.45; }

.chat-msg--bot { align-self: flex-start; background: rgba(212, 175, 55, 0.08); color: var(--muted); }

.chat-msg--user { align-self: flex-end; background: var(--gold-gradient); color: #1a1404; }

.chat-msg--bot a { color: var(--gold-light); font-weight: 600; }

.chat-quick { display: flex; flex-wrap: wrap; gap: 0.35rem; padding: 0 1rem 0.5rem; }

.chat-quick button {
  font-size: 0.72rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: transparent;
  border-radius: 100px;
  color: var(--muted);
  cursor: pointer;
}

.chat-quick button:hover { border-color: var(--gold-mid); color: var(--gold-light); }

.chat-input { display: flex; gap: 0.5rem; padding: 1rem; border-top: 1px solid rgba(212, 175, 55, 0.12); }

.chat-input input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.88rem;
}

.chat-input input:focus { outline: none; border-color: var(--gold-mid); }

.chat-input button {
  padding: 0.6rem 1rem;
  background: var(--gold-gradient);
  color: #1a1404;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black-card);
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  z-index: 300;
  opacity: 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}

.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__grid,
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; }

  .hero__visual { order: -1; }
  .scene-frame { height: min(360px, 60vw); }

  .form__row { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--black-base);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav.is-open { transform: translateY(0); opacity: 1; }

  .cursor-spray { display: none; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .intro { display: none !important; }
  body.is-loading #mainContent,
  body.is-loading .header,
  body.is-loading .footer,
  body.is-loading .chat-launcher { visibility: visible; }
  .intro__cloth-shine,
  .scene-frame__ring,
  .hero__bubbles { animation: none !important; }
}
