:root {
  --bg: #0d0a07;
  --bg-2: #16100b;
  --bg-3: #21170e;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);
  --text: #fff8ee;
  --muted: rgba(255, 248, 238, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d8a755;
  --gold-2: #f0cb7b;
  --gold-3: #9f6a2e;
  --accent: #8f5b2c;
  --danger: #e76f51;
  --ok: #4ade80;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 6%, rgba(216, 167, 85, 0.22), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(143, 91, 44, 0.26), transparent 34%),
    linear-gradient(135deg, #0d0a07 0%, #17100a 52%, #090705 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(13, 10, 7, 0.80);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -0.045em; font-size: 1.22rem; white-space: nowrap; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(240, 203, 123, 0.44); border-radius: 15px; background: linear-gradient(135deg, rgba(216, 167, 85, 0.30), rgba(255,255,255,0.08)); box-shadow: inset 0 0 26px rgba(216,167,85,.13); font-weight: 950; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 10px 12px; border-radius: 999px; color: var(--muted); font-size: .94rem; transition: 180ms ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.06); color: var(--text); }

.btn { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 44px; padding: 0 18px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; line-height: 1; cursor: pointer; transition: 180ms ease; }
.btn-lg { min-height: 52px; padding-inline: 24px; }
.btn-primary { color: #1a1208; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 18px 46px rgba(216,167,85,.24); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 24px 54px rgba(216,167,85,.32); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.06); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }

.hero { position: relative; overflow: hidden; padding: 86px 0 58px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 46px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(216,167,85,.34); border-radius: 999px; color: var(--gold-2); background: rgba(216,167,85,.09); font-weight: 850; font-size: .82rem; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.055em; }
h1 { margin-top: 18px; font-size: clamp(2.72rem, 7.6vw, 6.25rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.55rem); }
h3 { font-size: 1.32rem; }
p { line-height: 1.72; }
.lead { margin: 22px 0 0; max-width: 710px; color: var(--muted); font-size: clamp(1.02rem, 1.85vw, 1.23rem); line-height: 1.78; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); }
.trust-row span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.055); }
.hero-showcase { position: relative; min-height: 600px; border: 1px solid rgba(255,255,255,.16); border-radius: 38px; overflow: hidden; box-shadow: var(--shadow); background: rgba(255,255,255,.06); }
.hero-showcase::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(13,10,7,0) 0%, rgba(13,10,7,.16) 48%, rgba(13,10,7,.84) 100%); pointer-events: none; }
.hero-showcase img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; }
.hero-glass { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(9,7,5,.70); backdrop-filter: blur(18px); box-shadow: var(--shadow-soft); }
.hero-glass-top { top: 22px; left: 22px; padding: 14px 16px; display: grid; gap: 4px; }
.hero-glass-bottom { left: 22px; right: 22px; bottom: 22px; padding: 18px; display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.hero-glass span { display: block; color: var(--muted); font-size: .92rem; }
.hero-glass em { padding: 8px 10px; border-radius: 999px; color: #d7ffe4; background: rgba(74,222,128,.14); font-size: .82rem; font-style: normal; white-space: nowrap; }

.section { padding: 84px 0; }
.section-tight { padding: 48px 0; }
.section-head { text-align: center; max-width: 830px; margin: 0 auto 34px; }
.section-head p { margin: 14px auto 0; color: var(--muted); }
.split-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; max-width: none; text-align: left; }
.split-head p { max-width: 460px; margin: 0; }
.left-head { text-align: left; margin-left: 0; }
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.055)); box-shadow: var(--shadow-soft); }
.feature-card { padding: 26px; min-height: 220px; }
.feature-card .icon, .icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 16px; background: rgba(216,167,85,.14); border: 1px solid rgba(216,167,85,.24); font-size: 1.35rem; }
.feature-card p, .service-card p, .pro-card p, .muted { color: var(--muted); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.metric-card { padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.07); }
.metric-card strong { display: block; color: var(--gold-2); font-size: clamp(1.45rem, 3vw, 2.2rem); letter-spacing: -.05em; }
.metric-card span { display: block; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.visual-section { background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); }
.visual-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: center; }
.visual-card { overflow: hidden; border-radius: 34px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.image-card img { width:100%; min-height: 480px; object-fit: cover; }
.steps-list { display: grid; gap: 12px; margin-top: 24px; }
.steps-list div { display: flex; gap: 14px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.06); }
.steps-list b { color: var(--gold-2); }
.premium-card { overflow: hidden; }
.service-card { display: grid; }
.service-card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 1px solid var(--line); }
.service-card > div { padding: 22px; }
.service-price { display: block; margin-top: 16px; color: var(--gold-2); font-size: 1.22rem; }
.tag, .chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 999px; border: 1px solid rgba(240,203,123,.24); color: var(--gold-2); background: rgba(216,167,85,.09); font-size: .82rem; font-weight: 800; }
.card-link { display: inline-flex; margin-top: 16px; color: var(--gold-2); font-weight: 850; }
.dark-band { background: radial-gradient(circle at 20% 0%, rgba(216,167,85,.16), transparent 38%), rgba(0,0,0,.14); border-block: 1px solid rgba(255,255,255,.08); }
.booking-preview { display: grid; grid-template-columns: .88fr 1.12fr; gap: 26px; align-items: start; }
.enhanced-booking { align-items: center; }
.booking-box { padding: 24px; }
.booking-form { display: grid; gap: 16px; }
.booking-form-lg { gap: 18px; }
.field { display: grid; gap: 8px; }
.field label, .field-label { color: rgba(255,248,238,.82); font-weight: 850; font-size: .92rem; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(0,0,0,.20); color: var(--text); padding: 14px 14px; outline: none; }
textarea { min-height: 118px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(240,203,123,.58); box-shadow: 0 0 0 4px rgba(216,167,85,.10); }
.slot-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.slot-grid-lg { grid-template-columns: repeat(6, minmax(0,1fr)); }
.slot { min-height: 42px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: rgba(255,255,255,.06); cursor: pointer; }
.slot.active, .slot:hover { border-color: rgba(240,203,123,.44); color: #1a1208; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.rich-pro { padding: 18px; }
.rich-pro img { width: 100%; aspect-ratio: 16/11; object-fit: cover; border-radius: 22px; border: 1px solid var(--line); margin-bottom: 18px; }
.large-pro { display: flex; flex-direction: column; }
.large-pro .btn { margin-top: auto; }
.status-pill { display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: 8px 10px; border-radius: 999px; color: #d7ffe4; background: rgba(74,222,128,.14); font-size: .82rem; font-weight: 850; }
.muted-pill { color: var(--muted); background: rgba(255,255,255,.08); }
.mini-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px; }
.mini-list span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .82rem; }
.cta-band { padding: 34px; display: flex; justify-content: space-between; gap: 26px; align-items: center; border: 1px solid rgba(240,203,123,.22); border-radius: 34px; background: linear-gradient(135deg, rgba(216,167,85,.15), rgba(255,255,255,.07)); box-shadow: var(--shadow-soft); }
.cta-band h2 { margin-top: 10px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.page-shell { padding: 58px 0 90px; }
.page-hero { padding: 42px 0 46px; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 6vw, 5rem); }
.page-hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; }
.page-hero-img { width: 100%; max-height: 440px; object-fit: cover; border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); }
.filters-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.chip { cursor: pointer; background: rgba(255,255,255,.06); color: var(--muted); }
.chip.active, .chip:hover { color: #1a1208; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.booking-layout { display: grid; grid-template-columns: .42fr .58fr; gap: 24px; align-items: start; }
.booking-steps { padding: 26px; position: sticky; top: 96px; }
.booking-steps ol { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; counter-reset: steps; }
.booking-steps li { padding: 13px 14px; border: 1px solid var(--line); border-radius: 16px; color: var(--muted); }
.booking-steps li.active { color: var(--text); background: rgba(216,167,85,.10); border-color: rgba(216,167,85,.28); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.appointment-summary, .account-card { padding: 28px; min-height: 260px; display: grid; align-content: center; }
.appointment-summary strong { display:block; margin: 12px 0; font-size: 2.2rem; letter-spacing: -.06em; color: var(--gold-2); }
.contact-grid { display:grid; grid-template-columns: .7fr .7fr 1fr; gap: 20px; align-items: stretch; }
.simple-panel { padding: 28px; }
.legal-card { padding: 30px; max-width: 900px; }
.legal-card h2 { font-size: 1.5rem; margin-top: 20px; }
.legal-card h2:first-child { margin-top: 0; }

.site-footer { border-top: 1px solid var(--line); background: rgba(0,0,0,.18); padding: 38px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: start; color: var(--muted); }
.footer-brand { color: var(--text); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 14px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold-2); }
.cookie-banner { position: fixed; z-index: 40; left: 50%; bottom: 18px; transform: translateX(-50%) translateY(20px); width: min(760px, calc(100% - 32px)); padding: 14px; display: none; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid var(--line); border-radius: 22px; background: rgba(9,7,5,.88); backdrop-filter: blur(20px); box-shadow: var(--shadow); color: var(--muted); }
.cookie-banner.active { display: flex; animation: cookieIn .22s ease forwards; }
@keyframes cookieIn { to { transform: translateX(-50%) translateY(0); } }

@media (max-width: 1020px) {
  .nav-actions { display: none; }
  .hero-grid, .visual-grid, .booking-preview, .page-hero-split, .booking-layout, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .metrics-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-showcase, .hero-showcase img { min-height: 500px; }
  .booking-steps { position: static; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 68px; }
  .nav-toggle { display: grid; place-items: center; margin-left: auto; }
  .nav-links { position: absolute; top: 68px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: rgba(13,10,7,.96); box-shadow: var(--shadow); }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .hero { padding: 52px 0 34px; }
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .grid-3, .metrics-grid, .form-grid-2 { grid-template-columns: 1fr; }
  .split-head { display: block; }
  .split-head p { margin-top: 12px; }
  .section { padding: 58px 0; }
  .hero-showcase, .hero-showcase img { min-height: 420px; }
  .hero-glass-bottom { flex-direction: column; align-items: flex-start; }
  .slot-grid, .slot-grid-lg { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cta-band, .footer-grid, .cookie-banner { flex-direction: column; align-items: stretch; }
  .footer-links { justify-content: start; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
