




:root{
  --neon:#00FF12;

  /* Light glamour palette */
  --bg:#fbfafc;
  --bg2:#f6f0f7;
  --card:rgba(255,255,255,.78);
  --card2:rgba(255,255,255,.62);
  --line:rgba(17,18,24,.10);

  --text:#13141a;
  --muted:rgba(19,20,26,.62);

  --shadow:0 18px 60px rgba(16,18,28,.12);
  --shadow2:0 12px 34px rgba(16,18,28,.10);

  --radius:22px;
  --radius2:28px;

  --font-sans:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif:"Playfair Display", Georgia, serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--text);
  overflow-x:hidden;

  /* LIGHT + GLAMOUR background (pearl / blush / airy) */
  background:
    radial-gradient(1100px 700px at 12% 0%, rgba(255, 204, 230,.55), transparent 60%),
    radial-gradient(900px 600px at 88% 15%, rgba(255, 230, 200,.55), transparent 58%),
    radial-gradient(900px 650px at 50% 100%, rgba(206, 190, 255,.45), transparent 62%),
    radial-gradient(950px 650px at 65% 55%, rgba(0,255,18,.10), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1120px, 92%); margin:0 auto}

.section{padding:92px 0}
.section-title{
  font-family:var(--font-serif);
  font-weight:700;
  letter-spacing:.2px;
  font-size:clamp(30px, 3.2vw, 44px);
  margin:0 0 10px;
}
.section-lead{
  color:var(--muted);
  font-size:clamp(15px, 1.7vw, 18px);
  line-height:1.85;
  margin:0 0 28px;
}

/* subtle shimmer */
body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.75) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.55) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.45) 0 1px, transparent 2px),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,.55) 0 1px, transparent 2px);
  background-size: 260px 260px, 320px 320px, 420px 420px, 520px 520px;
  filter: blur(.2px);
}

/* progress */
.scroll-progress{
  position:fixed; inset:0 0 auto 0; height:3px; z-index:9999;
  background:rgba(17,18,24,.06);
}
.scroll-progress__bar{
  height:100%; width:0%;
  background:linear-gradient(90deg, rgba(0,255,18,.25), var(--neon), rgba(255,255,255,.65));
  box-shadow:0 0 14px rgba(0,255,18,.30);
}

/* Header */
.main-header{
  position:sticky; top:0; z-index:999;
  background:rgba(251,250,252,.68);
  backdrop-filter: blur(16px);
  border-bottom:1px solid rgba(17,18,24,.08);
}
.header-inner{display:flex; align-items:center; gap:14px; padding:14px 0}
.logo-area{display:flex; align-items:center; gap:10px; min-width:220px}
.logo-img{
  width:40px; height:40px; border-radius:14px;
  border:1px solid rgba(17,18,24,.10);
  box-shadow:0 14px 34px rgba(16,18,28,.10);
  object-fit:contain; /* FIX: było cover — placeholder/logo zawsze widoczne */
  background:rgba(255,255,255,.92);
}
.logo-text{font-weight:700; letter-spacing:.2px}

.main-nav{margin-left:auto; display:flex; align-items:center; gap:14px}
.main-nav a{
  color:rgba(19,20,26,.86);
  font-size:14px;
  padding:10px 12px;
  border-radius:14px;
  transition:transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.main-nav a:hover{
  background:rgba(255,255,255,.75);
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(16,18,28,.08);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:18px;
  border:1px solid transparent;
  padding:12px 16px;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, filter .18s ease;
  box-shadow:0 14px 34px rgba(16,18,28,.10);
  position:relative;
  overflow:hidden;
}
.btn:active{transform:translateY(1px)}
.btn::after{
  content:"";
  position:absolute; inset:-40% -70%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform:rotate(8deg) translateX(-60%);
  transition:transform .55s ease;
  pointer-events:none;
}
.btn:hover::after{transform:rotate(8deg) translateX(60%)}

.btn-primary{
  background:
    radial-gradient(900px 260px at 20% 30%, rgba(255,255,255,.45), transparent 45%),
    linear-gradient(135deg, rgba(0,255,18,.92), rgba(0,255,18,.48));
  color:#06120a;
  border-color:rgba(0,255,18,.55);
  box-shadow:0 22px 58px rgba(0,255,18,.14), 0 14px 30px rgba(16,18,28,.12);
}
.btn-primary:hover{transform:translateY(-2px); filter:saturate(1.05)}
.btn-outline{
  background:rgba(255,255,255,.70);
  border-color:rgba(17,18,24,.12);
  color:rgba(19,20,26,.92);
}
.btn-outline:hover{
  transform:translateY(-2px);
  border-color:rgba(0,255,18,.55);
  box-shadow:0 22px 58px rgba(0,255,18,.10), 0 14px 30px rgba(16,18,28,.10);
}

.btn-small{padding:10px 12px; border-radius:16px; font-size:13px}
.btn-large{padding:14px 18px; border-radius:20px}
.btn-nav{padding:10px 14px; font-size:13px}

.lang-switcher select{
  appearance:none;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(17,18,24,.12);
  color:rgba(19,20,26,.92);
  padding:10px 12px;
  border-radius:16px;
  outline:none;
  cursor:pointer;
}
.lang-switcher select:focus{
  border-color:rgba(0,255,18,.55);
  box-shadow:0 0 0 4px rgba(0,255,18,.12);
}

/* Burger */
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:16px;
  border:1px solid rgba(17,18,24,.12);
  background:rgba(255,255,255,.70);
  cursor:pointer;
}
.burger span{
  display:block; height:2px; width:18px;
  background:rgba(19,20,26,.85);
  margin:4px auto;
  border-radius:99px;
}

/* HERO */
.hero{padding-top:70px}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:38px;
  align-items:center;
}
.hero-kicker{
  color:rgba(0,255,18,.75);
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 12px;
}
.hero-title{
  font-family:var(--font-serif);
  margin:0 0 10px;
  font-size:clamp(40px, 5vw, 64px);
  line-height:1.02;
}
.hero-subtitle{
  margin:0 0 14px;
  font-size:clamp(18px, 2.3vw, 24px);
  color:rgba(19,20,26,.88);
}
.hero-subtext{
  margin:0 0 22px;
  color:rgba(19,20,26,.62);
  line-height:1.9;
  max-width:60ch;
}
.hero-cta{display:flex; flex-wrap:wrap; gap:12px; margin:0 0 18px}
.hero-micro{display:flex; flex-wrap:wrap; gap:10px}
.micro-pill{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(17,18,24,.10);
  color:rgba(19,20,26,.70);
  font-size:13px;
}
.hero-visual{position:relative}
.hero-glow{
  position:absolute; inset:-60px -20px auto -20px; height:250px;
  background:radial-gradient(closest-side, rgba(0,255,18,.14), transparent 70%);
  filter:blur(7px);
  pointer-events:none;
}
.hero-card{
  background:var(--card);
  border:1px solid rgba(17,18,24,.10);
  border-radius:var(--radius2);
  padding:20px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(115deg, rgba(255,255,255,.45), transparent 38%, rgba(0,255,18,.08));
  opacity:.55;
  pointer-events:none;
}
.hero-name{display:block; font-weight:800; font-size:18px; position:relative; z-index:1}
.hero-role{display:block; color:rgba(19,20,26,.62); font-size:13px; margin-top:2px; position:relative; z-index:1}
.hero-note{margin:12px 0 16px; color:rgba(19,20,26,.70); line-height:1.8; position:relative; z-index:1}
.hero-card-actions{display:flex; gap:10px; flex-wrap:wrap; position:relative; z-index:1}
.hero-photo{
  margin-top:16px;
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid rgba(17,18,24,.10);
  background:rgba(255,255,255,.80);
  box-shadow:var(--shadow2);
}
.hero-photo-img{
  width:100%;
  height:210px;
  object-fit:cover;
  transition:transform .35s ease, filter .35s ease;
  filter:saturate(1.05) contrast(1.05);
}
.hero-photo:hover .hero-photo-img{transform:scale(1.03); filter:saturate(1.10) contrast(1.07)}

/* ABOUT */
.about-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:start;
}
.about-image-frame{
  background:var(--card2);
  border:1px solid rgba(17,18,24,.10);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow:var(--shadow);
}
.personal-photos .main-photo{
  width:100%;
  height:360px;
  border-radius:22px;
  object-fit:cover;
  border:1px solid rgba(17,18,24,.10);
  background:rgba(255,255,255,.80);
}
.personal-thumbs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.about-thumb{
  width:100%;
  height:140px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(17,18,24,.10);
  background:rgba(255,255,255,.80);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.about-thumb:hover{
  transform:translateY(-3px);
  border-color:rgba(0,255,18,.55);
  box-shadow:0 22px 58px rgba(0,255,18,.08), 0 14px 30px rgba(16,18,28,.10);
}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.service-card{
  background:var(--card);
  border:1px solid rgba(17,18,24,.10);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow2);
  transition:transform .20s ease, border-color .20s ease, box-shadow .20s ease, filter .20s ease;
  position:relative;
  overflow:hidden;
}
.service-card:hover{
  transform:translateY(-5px);
  border-color:rgba(0,255,18,.55);
  filter:saturate(1.05);
  box-shadow:0 28px 76px rgba(0,255,18,.08), 0 16px 34px rgba(16,18,28,.12);
}
.service-icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  background:rgba(0,255,18,.12);
  border:1px solid rgba(0,255,18,.28);
  color:rgba(0,255,18,.95);
  margin-bottom:12px;
  box-shadow:0 16px 34px rgba(0,255,18,.08);
}
.service-card h3{margin:0 0 8px; font-size:16px}
.service-card p{margin:0; color:rgba(19,20,26,.65); line-height:1.75; font-size:14px}

/* BOOKING */
.section-highlight{
  background:
    radial-gradient(900px 380px at 18% 20%, rgba(0,255,18,.10), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.18));
  border-top:1px solid rgba(17,18,24,.08);
  border-bottom:1px solid rgba(17,18,24,.08);
}
.booking-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.booking-secondary{
  margin-top:18px;
  padding:14px;
  border-radius:20px;
  border:1px solid rgba(17,18,24,.10);
  background:rgba(255,255,255,.62);
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.booking-secondary__text{margin:0; color:rgba(19,20,26,.62); line-height:1.75}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.gallery-item{
  margin:0;
  border-radius:var(--radius2);
  overflow:hidden;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(17,18,24,.10);
  box-shadow:var(--shadow2);
}
.gallery-item img{
  width:100%;
  height:270px;
  object-fit:cover;
  transition:transform .30s ease, filter .30s ease;
  filter:saturate(1.06) contrast(1.05);
}
.gallery-item:hover img{transform:scale(1.06); filter:saturate(1.10) contrast(1.08)}

/* SHOP */
.shop-placeholder{
  background:rgba(255,255,255,.70);
  border:1px solid rgba(17,18,24,.10);
  border-radius:var(--radius2);
  padding:18px;
  box-shadow:var(--shadow2);
}
.student-panel-preview{
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  border:1px dashed rgba(0,255,18,.38);
  background:rgba(0,255,18,.06);
}
.panel-tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,255,18,.12);
  border:1px solid rgba(0,255,18,.25);
  color:rgba(0,255,18,.95);
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.panel-description{margin:10px 0 0; color:rgba(19,20,26,.62); line-height:1.75}

/* CONTACT */
.section-dark{
  background:
    radial-gradient(900px 380px at 85% 0%, rgba(255, 230, 200,.45), transparent 60%),
    radial-gradient(900px 380px at 10% 30%, rgba(0,255,18,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.20));
  border-top:1px solid rgba(17,18,24,.08);
}
.contact-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.contact-details p{margin:0 0 10px; color:rgba(19,20,26,.78); line-height:1.75}
.contact-details a{color:rgba(0,160,20,.95); text-decoration:underline; text-decoration-color:rgba(0,160,20,.30)}
.contact-actions{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 12px}

.social-links{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 12px}
.social-links a{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:18px;
  border:1px solid rgba(17,18,24,.10);
  background:rgba(255,255,255,.70);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.social-links a:hover{
  transform:translateY(-3px);
  border-color:rgba(0,255,18,.55);
  box-shadow:0 24px 70px rgba(0,255,18,.08), 0 14px 30px rgba(16,18,28,.10);
}
.social-label{font-size:13px; color:rgba(19,20,26,.70)}

.map-embed{
  margin-top:10px;
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid rgba(17,18,24,.10);
  background:rgba(255,255,255,.70);
  box-shadow:var(--shadow2);
}
.map-embed iframe{width:100%; height:270px; border:0; display:block}

/* Form */
.contact-form-wrapper{
  margin-top:14px;
  border-radius:var(--radius2);
  border:1px solid rgba(17,18,24,.10);
  background:rgba(255,255,255,.74);
  box-shadow:var(--shadow2);
  padding:16px;
}
.contact-form-title{margin:0 0 6px; font-size:18px}
.contact-form-intro{margin:0 0 14px; color:rgba(19,20,26,.62); line-height:1.75; font-size:14px}

.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.form-row{display:flex; flex-direction:column; gap:8px; margin-bottom:12px}
.form-row label{font-size:13px; color:rgba(19,20,26,.78)}

input, textarea, select{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(17,18,24,.12);
  background:rgba(255,255,255,.92);
  color:rgba(19,20,26,.92);
  padding:12px;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease;
}
input:focus, textarea:focus, select:focus{
  border-color:rgba(0,255,18,.55);
  box-shadow:0 0 0 4px rgba(0,255,18,.12);
}
textarea{resize:vertical}
.form-row-consent{margin-top:2px}
.checkbox-label{display:flex; gap:10px; align-items:flex-start; font-size:12.5px; color:rgba(19,20,26,.62); line-height:1.55}
.checkbox-label input{width:auto; margin-top:2px}
.form-success-message{margin:12px 0 0; color:rgba(0,160,20,.95); font-size:13px}

/* Logo block */
.contact-logo-block{
  border-radius:var(--radius2);
  border:1px solid rgba(17,18,24,.10);
  background:rgba(255,255,255,.70);
  box-shadow:var(--shadow2);
  padding:16px;
  position:sticky;
  top:92px;
}
.contact-logo-frame{
  border-radius:22px;
  border:1px dashed rgba(0,255,18,.38);
  background:rgba(0,255,18,.06);
  padding:16px;
}
.contact-logo-img{width:100%; height:180px; object-fit:contain}
.contact-logo-text{margin:12px 0 0; color:rgba(19,20,26,.62); font-size:13px; line-height:1.65}

/* Footer */
.main-footer{
  border-top:1px solid rgba(17,18,24,.08);
  padding:18px 0;
  background:rgba(255,255,255,.45);
}
.footer-inner{display:flex; gap:14px; justify-content:space-between; align-items:center; flex-wrap:wrap}
.footer-text{margin:0; color:rgba(19,20,26,.62); font-size:13px}
.footer-legal{margin:0; color:rgba(19,20,26,.45); font-size:12px}
.footer-link{color:rgba(19,20,26,.55); text-decoration:underline; text-decoration-color:rgba(19,20,26,.20)}
.footer-link:hover{color:rgba(0,160,20,.95); text-decoration-color:rgba(0,160,20,.30)}

/* Cookie bottom */
.cookie-banner{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  z-index:10000;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  padding:12px 14px;
  border-radius:20px;
  border:1px solid rgba(17,18,24,.10);
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  box-shadow:var(--shadow);
}
.cookie-text{margin:0; color:rgba(19,20,26,.62); font-size:12.5px; line-height:1.55}
.cookie-banner-actions{display:flex; gap:10px}

/* Modal */
.modal{position:fixed; inset:0; display:none; z-index:12000}
.modal[aria-hidden="false"]{display:block}
.modal-backdrop{position:absolute; inset:0; background:rgba(0,0,0,.45)}
.modal-card{
  position:relative;
  width:min(880px, 92%);
  margin:8vh auto 0;
  border-radius:26px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(17,18,24,.10);
  box-shadow:var(--shadow);
  padding:18px;

  /* FIX: żeby modal nie uciekał poza ekran */
  max-height: calc(100vh - 120px);
  overflow: hidden;
}
.modal-title{margin:0 0 8px; font-family:var(--font-serif); font-size:22px}
.modal-body{
  color:rgba(19,20,26,.70);
  line-height:1.85;
  font-size:14px;

  /* FIX: przewijanie treści w modalu */
  max-height: calc(100vh - 220px);
  overflow: auto;
  padding-right: 6px;
}
.modal-close{
  position:absolute; top:12px; right:12px;
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(17,18,24,.12);
  background:rgba(255,255,255,.85);
  color:rgba(19,20,26,.92);
  cursor:pointer;
}

/* (opcjonalnie) ładniejszy scroll w modalu */
.modal-body::-webkit-scrollbar{width:10px}
.modal-body::-webkit-scrollbar-thumb{
  background: rgba(17,18,24,.18);
  border-radius: 10px;
}

.visually-hidden{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ✅ REVEAL FIX: bez JS ma być WIDOCZNE */
.reveal,.reveal-soft{opacity:1; transform:none}
html.js .reveal{opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease}
html.js .reveal.is-visible{opacity:1; transform:translateY(0)}
html.js .reveal-soft{opacity:0; transform:translateY(10px); transition:opacity .85s ease, transform .85s ease}
html.js .reveal-soft.is-visible{opacity:1; transform:translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .hero-inner, .about-inner, .contact-inner{grid-template-columns:1fr}
  .contact-logo-block{position:relative; top:auto}
  .services-grid{grid-template-columns:repeat(2, 1fr)}
  .gallery-grid{grid-template-columns:repeat(2, 1fr)}
}

@media (max-width: 760px){
  .burger{display:inline-grid; place-items:center}

  .main-nav{
    position:fixed;
    inset:70px 12px auto 12px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(17,18,24,.10);
    border-radius:22px;
    padding:12px;
    box-shadow:var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    z-index:13000;
  }

  /* działa i dla .open i dla .is-open (różne wersje JS) */
  .main-nav.open{display:flex}
  .main-nav.is-open{display:flex}

  .main-nav a{padding:12px}
  .btn-nav{width:100%}
  .lang-switcher{margin-left:auto}
  .services-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .hero-photo-img{height:190px}

  /* Modal na telefonie: trochę niżej i z większą przestrzenią */
  .modal-card{
    margin:12vh auto 0;
    max-height: calc(100vh - 140px);
  }
  .modal-body{
    max-height: calc(100vh - 240px);
  }
}
