/* ============ RESET & BASE ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --dark:#0c0c11;
  --dark2:#12121a;
  --dark3:#191924;
  --gold:#c9a05c;
  --gold2:#e6c98a;
  --gold-dark:#a37c3f;
  --text:#e9e6df;
  --muted:#a8a49c;
  --font:'Segoe UI','Roboto',system-ui,-apple-system,Arial,sans-serif;
}
html { scroll-behavior:smooth; scroll-padding-top:92px; }
body { font-family:var(--font); background:var(--dark); color:var(--text); line-height:1.7; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
body.no-scroll { overflow:hidden; }
img { max-width:100%; display:block; }
a { color:inherit; }
::selection { background:var(--gold); color:#0c0c11; }
.container { width:min(1140px,92%); margin-inline:auto; }
.section { padding:100px 0; }
.eyebrow { color:var(--gold); letter-spacing:4px; text-transform:uppercase; font-size:.78rem; font-weight:600; }
.gold { color:var(--gold2); }

/* ============ BUTTONS ============ */
.btn { display:inline-block; padding:14px 30px; font-size:.85rem; letter-spacing:1.6px; text-transform:uppercase; text-decoration:none; border-radius:2px; transition:all .35s ease; cursor:pointer; border:0; }
.btn-gold { background:var(--gold); color:#0c0c11; font-weight:600; box-shadow:0 8px 30px rgba(201,160,92,.30); }
.btn-gold:hover { background:var(--gold2); transform:translateY(-3px); box-shadow:0 16px 42px rgba(201,160,92,.42); }
.btn-ghost { border:1px solid rgba(233,230,223,.38); color:#fff; background:transparent; }
.btn-ghost:hover { border-color:var(--gold); color:var(--gold2); background:rgba(201,160,92,.08); }

/* ============ PRELOADER ============ */
#preloader { position:fixed; inset:0; background:#0b0b10; z-index:2000; display:flex; align-items:center; justify-content:center; transition:opacity .6s ease, visibility .6s; }
#preloader.done { opacity:0; visibility:hidden; }
.monogram { font-size:3rem; font-weight:700; color:#fff; letter-spacing:3px; animation:monoPulse 2s ease-in-out infinite; }
.monogram .amp { color:var(--gold); font-style:italic; font-weight:400; }
@keyframes monoPulse { 0%,100% { opacity:.75; } 50% { opacity:1; } }
.pre-line { width:140px; height:1px; background:rgba(255,255,255,.14); margin:20px auto 0; position:relative; overflow:hidden; }
.pre-line::after { content:''; position:absolute; inset:0; background:var(--gold); transform:translateX(-100%); animation:loadline 1.5s ease-in-out infinite; }
@keyframes loadline { 0% { transform:translateX(-100%); } 100% { transform:translateX(100%); } }

/* ============ NAVBAR (fixed, always visible) ============ */
#navbar { position:fixed; top:0; left:0; right:0; z-index:1000; padding:22px 0; transition:padding .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease; border-bottom:1px solid transparent; }
#navbar.scrolled { background:rgba(12,12,17,.94); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px); padding:12px 0; border-bottom-color:rgba(201,160,92,.22); box-shadow:0 10px 34px rgba(0,0,0,.35); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.brand { font-size:1.28rem; font-weight:700; letter-spacing:.4px; color:#fff; text-decoration:none; white-space:nowrap; }
.brand span { color:var(--gold); }
.nav-links { display:flex; align-items:center; gap:34px; }
.nav-links a { color:var(--muted); text-decoration:none; font-size:.94rem; letter-spacing:.5px; position:relative; padding:6px 0; transition:color .3s; }
.nav-links a::after { content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold); transition:width .35s ease; }
.nav-links a:hover { color:#fff; }
.nav-links a:hover::after { width:100%; }
.nav-links .nav-cta { border:1px solid rgba(201,160,92,.55); color:var(--gold2); padding:9px 20px; border-radius:2px; letter-spacing:1.4px; font-size:.82rem; text-transform:uppercase; }
.nav-links .nav-cta::after { display:none; }
.nav-links .nav-cta:hover { background:var(--gold); border-color:var(--gold); color:#0c0c11; }

/* burger — hidden on desktop */
.burger { display:none; background:none; border:0; cursor:pointer; width:44px; height:44px; flex-direction:column; justify-content:center; align-items:center; gap:6px; z-index:1102; padding:0; }
.burger span { display:block; width:26px; height:2px; background:var(--gold); transition:transform .35s ease, opacity .3s ease; }
.burger.active span:nth-child(1) { transform:translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity:0; }
.burger.active span:nth-child(3) { transform:translateY(-8px) rotate(-45deg); }

/* overlay behind mobile menu */
.nav-overlay { position:fixed; inset:0; background:rgba(0,0,0,.62); -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px); opacity:0; pointer-events:none; transition:opacity .4s ease; z-index:1098; }
.nav-overlay.show { opacity:1; pointer-events:auto; }

/* ============ HERO ============ */
.hero { position:relative; min-height:100vh; min-height:100svh; display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; animation:kenburns 20s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform:scale(1); } to { transform:scale(1.12); } }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,10,14,.68) 0%, rgba(10,10,14,.52) 55%, rgba(10,10,14,.94) 100%); }
.hero-content { position:relative; z-index:2; padding:110px 0 60px; }
.hero h1 { font-size:clamp(2.3rem,6vw,4.5rem); line-height:1.12; font-weight:700; margin:18px 0; letter-spacing:.4px; color:#fff; }
.hero-sub { color:#d6d2ca; max-width:640px; font-size:clamp(1rem,2vw,1.15rem); }
.hero-cta { display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
.hero-a { opacity:0; animation:fadeUp .95s cubic-bezier(.22,.61,.36,1) forwards; }
.hero-a.d1 { animation-delay:.15s; }
.hero-a.d2 { animation-delay:.33s; }
.hero-a.d3 { animation-delay:.51s; }
.scroll-hint { position:absolute; left:50%; bottom:26px; transform:translateX(-50%); z-index:3; width:26px; height:44px; border:1.5px solid rgba(233,230,223,.45); border-radius:14px; display:flex; justify-content:center; padding-top:8px; }
.scroll-hint span { width:3px; height:8px; background:var(--gold); border-radius:2px; animation:wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0% { opacity:0; transform:translateY(0); } 35% { opacity:1; } 100% { opacity:0; transform:translateY(14px); } }

/* ============ STATS ============ */
.stats { background:var(--dark2); padding:54px 0; border-top:1px solid rgba(201,160,92,.18); border-bottom:1px solid rgba(201,160,92,.18); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; text-align:center; }
.stat .num { font-size:clamp(2rem,4vw,2.7rem); font-weight:700; color:#fff; }
.stat .plus { color:var(--gold); font-size:clamp(1.6rem,3vw,2.2rem); margin-left:2px; }
.stat p { color:var(--muted); margin-top:6px; font-size:.92rem; letter-spacing:.4px; }

/* ============ ABOUT ============ */
.about { background:var(--dark); }
.about-grid { display:grid; grid-template-columns:1.05fr 1fr; gap:70px; align-items:center; }
.about-media { position:relative; }
.frame { position:absolute; inset:18px -18px -18px 18px; border:1px solid rgba(201,160,92,.4); pointer-events:none; }
.about-img { width:100%; height:auto; position:relative; z-index:1; box-shadow:0 30px 70px rgba(0,0,0,.5); }
.badge { position:absolute; z-index:2; right:-16px; bottom:30px; background:var(--gold); color:#0c0c11; padding:14px 22px; box-shadow:0 14px 34px rgba(0,0,0,.45); }
.badge strong { display:block; font-size:1rem; letter-spacing:.5px; }
.badge span { font-size:.78rem; opacity:.85; }
.about-text h2 { font-size:clamp(1.8rem,3.2vw,2.6rem); line-height:1.22; color:#fff; margin:16px 0 20px; }
.about-text .lead { color:#d6d2ca; font-size:1.06rem; margin-bottom:16px; }
.about-text p { color:var(--muted); margin-bottom:14px; }
.values { list-style:none; margin:22px 0 30px; }
.values li { display:flex; gap:13px; align-items:flex-start; margin:13px 0; color:var(--muted); font-size:.96rem; }
.values li strong { color:#fff; font-weight:600; }
.v-dot { width:8px; height:8px; background:var(--gold); transform:rotate(45deg); margin-top:9px; flex-shrink:0; }

/* ============ PRACTICE ============ */
.practice { background:var(--dark2); }
.section-head { text-align:center; max-width:660px; margin:0 auto 58px; }
.section-head h2 { font-size:clamp(1.9rem,3.4vw,2.7rem); color:#fff; margin:14px 0 16px; line-height:1.2; }
.section-head p { color:var(--muted); }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.card { background:var(--dark3); border:1px solid rgba(255,255,255,.06); padding:38px 30px; position:relative; transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease; }
.card::before { content:''; position:absolute; left:0; top:0; height:3px; width:0; background:linear-gradient(90deg,var(--gold),var(--gold2)); transition:width .45s ease; }
.card:hover { transform:translateY(-8px); border-color:rgba(201,160,92,.35); box-shadow:0 24px 54px rgba(0,0,0,.45); }
.card:hover::before { width:100%; }
.card-icon { font-size:2rem; margin-bottom:16px; }
.card h3 { font-size:1.2rem; color:#fff; margin-bottom:10px; }
.card p { color:var(--muted); font-size:.94rem; }

/* ============ PARALLAX ============ */
.parallax { position:relative; padding:140px 0; overflow:hidden; }
.parallax-bg { position:absolute; inset:-25% 0; background-size:cover; background-position:center; background-attachment:fixed; }
.parallax-overlay { position:absolute; inset:0; background:rgba(10,10,14,.8); }
.parallax-content { position:relative; z-index:2; }
.parallax-quote { font-size:clamp(1.3rem,3vw,2rem); font-style:italic; color:#fff; max-width:840px; margin:0 auto; text-align:center; line-height:1.6; }
.parallax-quote::before { content:'„'; color:var(--gold); }
.parallax-quote::after { content:'"'; color:var(--gold); }
.parallax-author { text-align:center; color:var(--gold); letter-spacing:3px; margin-top:22px; text-transform:uppercase; font-size:.82rem; }

/* ============ TEAM ============ */
.team { background:var(--dark); }
.team-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:42px; max-width:900px; margin:0 auto; }
.team-card { background:var(--dark2); border:1px solid rgba(255,255,255,.06); transition:transform .4s ease, border-color .4s ease, box-shadow .4s ease; }
.team-card:hover { transform:translateY(-6px); border-color:rgba(201,160,92,.32); box-shadow:0 26px 56px rgba(0,0,0,.45); }
.team-img-wrap { overflow:hidden; position:relative; }
.team-img-wrap::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 60%,rgba(12,12,17,.55)); }
.team-img-wrap img { width:100%; height:350px; object-fit:cover; transition:transform .9s ease; }
.team-card:hover img { transform:scale(1.06); }
.team-info { padding:26px 26px 30px; }
.team-info h3 { font-size:1.28rem; color:#fff; }
.team-info .role { color:var(--gold); font-size:.8rem; letter-spacing:2.2px; text-transform:uppercase; margin:7px 0 13px; }
.team-info p { color:var(--muted); font-size:.95rem; }

/* ============ CONTACT ============ */
.contact { background:var(--dark2); }
.contact-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:start; }
.info-card { display:flex; gap:18px; padding:22px 24px; background:var(--dark3); border:1px solid rgba(255,255,255,.06); margin-bottom:16px; align-items:flex-start; transition:border-color .3s ease, transform .3s ease; }
.info-card:hover { border-color:rgba(201,160,92,.35); transform:translateX(6px); }
.info-card .ic { font-size:1.5rem; color:var(--gold); line-height:1.2; }
.info-card h4 { font-size:1rem; color:#fff; margin-bottom:4px; letter-spacing:.4px; }
.info-card p, .info-card a { color:var(--muted); font-size:.95rem; text-decoration:none; }
.info-card a:hover { color:var(--gold2); }
.contact-media { position:relative; margin-top:26px; }
.contact-img { width:100%; height:230px; object-fit:cover; position:relative; z-index:1; box-shadow:0 24px 54px rgba(0,0,0,.45); }
.hours-box { background:var(--dark3); border:1px solid rgba(255,255,255,.07); padding:34px 30px; }
.hours-box h3 { font-size:1.3rem; color:#fff; margin-bottom:20px; }
.hours { border:1px solid rgba(255,255,255,.07); }
.row { display:flex; justify-content:space-between; padding:13px 18px; border-bottom:1px solid rgba(255,255,255,.05); transition:background .3s; }
.row:last-child { border-bottom:0; }
.row .day { color:#e9e6df; font-size:.96rem; }
.row .time { color:var(--muted); font-size:.96rem; }
.row.closed .time, .closed-t { color:#96605c; }
.row.today { background:rgba(201,160,92,.09); border-left:3px solid var(--gold); }
.row.today .day, .row.today .time { color:var(--gold2); }
.map-btn { margin-top:26px; width:100%; text-align:center; }

/* ============ FOOTER ============ */
footer { background:#08080d; border-top:1px solid rgba(201,160,92,.2); padding:46px 0 34px; text-align:center; }
.footer-inner { display:flex; flex-direction:column; align-items:center; gap:14px; }
.footer-tag { color:var(--muted); font-size:.9rem; letter-spacing:.4px; }
.footer-links { display:flex; gap:26px; flex-wrap:wrap; justify-content:center; }
.footer-links a { color:var(--muted); text-decoration:none; font-size:.9rem; transition:color .3s; }
.footer-links a:hover { color:var(--gold2); }
.footer-phone { color:var(--gold); text-decoration:none; font-size:1.05rem; letter-spacing:1px; }
.footer-phone:hover { color:var(--gold2); }
.footer-copy { color:#6f6b64; font-size:.82rem; margin-top:6px; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity:0; transform:translateY(34px); transition:opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1); will-change:opacity,transform; }
.reveal-left { opacity:0; transform:translateX(-44px); transition:opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1); will-change:opacity,transform; }
.reveal-right { opacity:0; transform:translateX(44px); transition:opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1); will-change:opacity,transform; }
.reveal.in, .reveal-left.in, .reveal-right.in { opacity:1; transform:none; }
.cards .card:nth-child(2) { transition-delay:.08s; }
.cards .card:nth-child(3) { transition-delay:.16s; }
.cards .card:nth-child(4) { transition-delay:.08s; }
.cards .card:nth-child(5) { transition-delay:.16s; }
.cards .card:nth-child(6) { transition-delay:.24s; }
.stats .stat:nth-child(2) { transition-delay:.1s; }
.stats .stat:nth-child(3) { transition-delay:.2s; }
.stats .stat:nth-child(4) { transition-delay:.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width:920px) {
  .burger { display:flex; }
  /* mobile menu: hidden off-canvas, opens ONLY via burger */
  .nav-links { position:fixed; top:0; right:0; height:100vh; height:100dvh; width:min(320px,84%); background:linear-gradient(180deg,#16161f 0%,#0c0c11 100%); flex-direction:column; justify-content:center; gap:30px; padding:90px 34px; transform:translateX(102%); transition:transform .45s cubic-bezier(.77,0,.18,1); box-shadow:-24px 0 60px rgba(0,0,0,.55); border-left:1px solid rgba(201,160,92,.18); z-index:1100; overflow-y:auto; }
  .nav-links.open { transform:translateX(0); }
  .nav-links a { font-size:1.12rem; letter-spacing:1.2px; color:#e9e6df; padding:8px 0; }
  .nav-links a::after { height:1px; }
  .nav-links .nav-cta { margin-top:12px; text-align:center; width:100%; }
  .about-grid, .contact-grid { grid-template-columns:1fr; gap:54px; }
  .cards { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:1fr; }
  .section { padding:74px 0; }
  .badge { right:8px; }
  .frame { inset:14px -10px -10px 14px; }
  .parallax-bg { background-attachment:scroll; }
}
@media (max-width:560px) {
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:30px 14px; }
  .cards { grid-template-columns:1fr; }
  .hero-cta .btn { width:100%; text-align:center; }
  .scroll-hint { display:none; }
  .brand { font-size:1.1rem; }
  .team-img-wrap img { height:300px; }
  .hours-box { padding:26px 18px; }
}
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  html { scroll-behavior:auto; }
  .reveal, .reveal-left, .reveal-right { opacity:1; transform:none; }
}