/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0c0a14;
  --bg-2: #14101f;
  --bg-3: #1c1730;
  --gold: #e0b04a;
  --gold-soft: #f0c869;
  --gold-glow: rgba(224, 176, 74, 0.35);
  --blue: #5b8def;
  --green: #4ec9a0;
  --red: #e06b6b;
  --text: #e8e4f0;
  --text-dim: #a39db8;
  --text-faint: #6b6580;
  --border: rgba(224, 176, 74, 0.15);
  --radius: 18px;
  --maxw: 1180px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12, 10, 20, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.nav__brand { display: flex; align-items: center; gap: 8px; font-family: 'Cinzel', serif; font-weight: 700; font-size: 1.25rem; }
.nav__flask { font-size: 1.4rem; filter: drop-shadow(0 0 6px var(--gold-glow)); }
.nav__name-accent { color: var(--gold); }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--text-dim); transition: color .2s; }
.nav__links a:hover { color: var(--gold-soft); }
.nav__cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1410 !important; padding: 8px 18px; border-radius: 50px; font-weight: 600;
  box-shadow: 0 0 18px var(--gold-glow);
}
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__burger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: .3s; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  body.nav-open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); padding: 20px; gap: 16px; border-bottom: 1px solid var(--border);
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, background .2s; text-align: center;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1410; box-shadow: 0 4px 24px var(--gold-glow);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 6px 30px var(--gold-glow); }
.btn--ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn--outline { background: transparent; border: 1px solid var(--gold); color: var(--gold-soft); width: 100%; }
.btn--outline:hover { background: var(--gold); color: #1a1410; }
.btn--full { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 60px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(91, 141, 239, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(78, 201, 160, 0.1), transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(224, 176, 74, 0.1), transparent 60%);
}
.hero__orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .4; animation: float 12s ease-in-out infinite; }
.orb--1 { width: 300px; height: 300px; background: var(--blue); top: 10%; left: -5%; }
.orb--2 { width: 250px; height: 250px; background: var(--green); bottom: 5%; right: 10%; animation-delay: -4s; }
.orb--3 { width: 200px; height: 200px; background: var(--gold); top: 50%; left: 50%; animation-delay: -8s; opacity: .25; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -40px); } }

.hero__content { position: relative; z-index: 2; max-width: 620px; }
.hero__badge {
  display: inline-block; padding: 6px 16px; border: 1px solid var(--border);
  border-radius: 50px; font-size: .82rem; color: var(--gold-soft); margin-bottom: 24px;
  background: rgba(224, 176, 74, 0.05);
}
.hero__title {
  font-family: 'Cinzel', serif; font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 24px;
}
.hero__title-glow {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px var(--gold-glow));
}
.hero__sub { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 36px; max-width: 520px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong { font-family: 'Cinzel', serif; font-size: 1.8rem; color: var(--gold-soft); }
.hero__stat span { font-size: .82rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1px; }

/* Flask */
.hero__flask { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 1; pointer-events: none; }
.flask { position: relative; width: 200px; height: 300px; }
.flask__neck { width: 40px; height: 70px; background: rgba(255,255,255,0.06); border: 2px solid rgba(224,176,74,0.3); border-bottom: none; margin: 0 auto; border-radius: 8px 8px 0 0; }
.flask__body {
  position: relative; width: 180px; height: 180px; margin: -2px auto 0;
  background: rgba(255,255,255,0.04); border: 2px solid rgba(224,176,74,0.3);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; overflow: hidden;
}
.flask__liquid {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(180deg, rgba(78,201,160,0.5), rgba(91,141,239,0.7));
  border-radius: 0 0 50% 50% / 0 0 60% 60%;
  animation: liquidSwirl 4s ease-in-out infinite;
}
@keyframes liquidSwirl { 0%,100% { height: 60%; } 50% { height: 65%; } }
.flask__bubble { position: absolute; bottom: 10%; width: 10px; height: 10px; background: rgba(255,255,255,0.4); border-radius: 50%; animation: bubble 3s ease-in infinite; }
.flask__bubble:nth-child(1) { left: 30%; animation-delay: 0s; }
.flask__bubble:nth-child(2) { left: 60%; animation-delay: 1s; }
.flask__bubble:nth-child(3) { left: 45%; animation-delay: 2s; }
@keyframes bubble { 0% { bottom: 5%; opacity: 0; } 30% { opacity: 1; } 100% { bottom: 90%; opacity: 0; } }
.flask__glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 70%, var(--gold-glow), transparent 60%); }
.flask__steam { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.flask__steam span { width: 6px; height: 30px; background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent); border-radius: 50px; animation: steam 2s ease-in infinite; }
.flask__steam span:nth-child(2) { animation-delay: .4s; height: 40px; }
.flask__steam span:nth-child(3) { animation-delay: .8s; }
@keyframes steam { 0% { opacity: 0; transform: translateY(10px); } 50% { opacity: .6; } 100% { opacity: 0; transform: translateY(-20px); } }

@media (max-width: 900px) { .hero__flask { display: none; } }

/* ===== SECTIONS ===== */
.section { padding: 100px 24px; max-width: var(--maxw); margin: 0 auto; position: relative; }
.section--dark { background: var(--bg-2); max-width: none; }
.section--dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: 60px; }
.section__eyebrow { display: inline-block; font-family: 'Cinzel', serif; font-size: .82rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section__title { font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 16px; }
.section__lead { color: var(--text-dim); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== SERVICE CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.card--blue::before { background: var(--blue); }
.card--green::before { background: var(--green); }
.card--red::before { background: var(--red); }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card__icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.card__title { font-family: 'Cinzel', serif; font-size: 1.4rem; margin-bottom: 14px; }
.card__desc { color: var(--text-dim); font-size: .95rem; margin-bottom: 24px; }
.card__list { margin-bottom: 24px; }
.card__list li { padding: 8px 0 8px 28px; position: relative; font-size: .92rem; color: var(--text); border-bottom: 1px solid rgba(255,255,255,0.04); }
.card__list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); }
.card--blue .card__list li::before { color: var(--blue); }
.card--green .card__list li::before { color: var(--green); }
.card--red .card__list li::before { color: var(--red); }
.card__tag { font-size: .82rem; color: var(--text-faint); font-style: italic; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ===== PROCESS STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.step {
  text-align: center; padding: 36px 24px; border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(255,255,255,0.02); position: relative; transition: transform .3s;
}
.step:hover { transform: translateY(-4px); border-color: var(--gold); }
.step__num {
  font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold);
  width: 60px; height: 60px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold); border-radius: 50%; background: rgba(224,176,74,0.08);
}
.step__title { font-family: 'Cinzel', serif; font-size: 1.2rem; margin-bottom: 12px; }
.step__desc { color: var(--text-dim); font-size: .92rem; }

/* ===== PRICING ===== */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; align-items: stretch; }
.price {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px;
  display: flex; flex-direction: column; position: relative; transition: transform .3s;
}
.price:hover { transform: translateY(-4px); }
.price--featured { border-color: var(--gold); box-shadow: 0 0 30px var(--gold-glow); }
.price__ribbon {
  position: absolute; top: 16px; right: -4px; background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1410; font-size: .72rem; font-weight: 700; padding: 4px 14px; border-radius: 4px 0 0 4px;
}
.price__head h3 { font-family: 'Cinzel', serif; font-size: 1.3rem; margin-bottom: 8px; }
.price__amount { font-size: 1rem; color: var(--text-dim); }
.price__amount strong { font-family: 'Cinzel', serif; font-size: 2.2rem; color: var(--gold-soft); }
.price__unit { font-size: .85rem; }
.price__note { font-size: .82rem; color: var(--text-faint); margin-bottom: 24px; font-style: italic; }
.price__list { margin-bottom: 28px; flex-grow: 1; }
.price__list li { padding: 10px 0 10px 26px; position: relative; font-size: .92rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.price__list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.fees__note { text-align: center; margin-top: 40px; color: var(--text-dim); font-size: .95rem; padding: 20px; border: 1px dashed var(--border); border-radius: var(--radius); }
.fees__note strong { color: var(--gold-soft); }

/* ===== ABOUT ===== */
.about { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.about__visual { display: flex; justify-content: center; }
.about__circle { position: relative; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; }
.about__circle-inner { font-size: 5rem; z-index: 2; filter: drop-shadow(0 0 20px var(--gold-glow)); }
.about__ring { position: absolute; border: 1px solid var(--border); border-radius: 50%; }
.about__ring--1 { inset: 0; animation: spin 20s linear infinite; border-top-color: var(--gold); }
.about__ring--2 { inset: 30px; animation: spin 15s linear infinite reverse; border-bottom-color: var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }
.about__text p { color: var(--text-dim); margin-bottom: 16px; font-size: 1.02rem; }
.about__text strong { color: var(--text); }
.about__creds { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.cred { display: flex; align-items: center; gap: 12px; font-size: .88rem; color: var(--text-dim); }
.cred__icon { font-size: 1.3rem; }
@media (max-width: 760px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__creds { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.contact { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; }
.contact__card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 40px;
}
.contact__lead { color: var(--text-dim); margin-bottom: 28px; }
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.form-row input { flex: 1; }
.contact__form input, .contact__form select, .contact__form textarea {
  background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; color: var(--text); font-family: inherit; font-size: .95rem; transition: border .2s;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { outline: none; border-color: var(--gold); }
.contact__form select option { background: var(--bg-2); }
.form-msg { display: none; text-align: center; color: var(--green); font-weight: 500; padding: 12px; }
.contact__aside { display: flex; flex-direction: column; gap: 16px; }
.aside-item {
  display: flex; align-items: center; gap: 16px; padding: 20px;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius);
}
.aside-item__icon { font-size: 1.6rem; }
.aside-item strong { color: var(--gold-soft); }
.aside-item div { font-size: .9rem; color: var(--text-dim); }
@media (max-width: 760px) {
  .contact { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .contact__card { padding: 28px 20px; }
}

/* ===== FOOTER ===== */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 50px 24px 30px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.footer__brand { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.footer__flask { color: var(--gold); margin-right: 6px; }
.footer__accent { color: var(--gold); }
.footer__tag { color: var(--text-faint); font-size: .9rem; margin-bottom: 24px; }
.footer__links { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.footer__links a { font-size: .9rem; color: var(--text-dim); transition: color .2s; }
.footer__links a:hover { color: var(--gold-soft); }
.footer__copy { font-size: .82rem; color: var(--text-faint); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
