:root {
  --navy: #0b2a6f;
  --blue: #1e6fe0;
  --blue-d: #1557b8;
  --sky: #dcebfc;
  --mist: #f4f8fe;
  --ink: #1d2b4a;
  --muted: #56658a;
  --line: #d9e3f3;
  --white: #fff;
  --peach: #ffb58a;
  --mint: #d3f2e8;
  --r: 24px;
  --shadow: 0 18px 50px -20px rgba(11, 42, 111, .28);
  --font-h: "Sora", system-ui, sans-serif;
  --font-b: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-d); }
h1, h2, h3 { font-family: var(--font-h); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.wrap { width: min(1160px, 100% - 40px); margin-inline: auto; }
.muted { color: var(--muted); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* Przyciski */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 1rem var(--font-b); text-decoration: none; cursor: pointer;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; box-shadow: 0 10px 24px -10px rgba(30, 111, 224, .8); }
.btn-primary:hover { box-shadow: 0 14px 30px -10px rgba(30, 111, 224, .9); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-d); }
.btn-sm { padding: 10px 20px; font-size: .95rem; }
.btn-block { width: 100%; }

/* Nagłówek */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 227, 243, .7);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.brand { display: block; position: relative; z-index: 60; line-height: 0; margin-bottom: -40px; }
.brand img { width: 104px; height: 104px; border-radius: 50%; background: #fff; border: 4px solid #fff; box-shadow: 0 14px 30px -12px rgba(11, 42, 111, .55); transition: transform .25s; }
.brand:hover img { transform: scale(1.04) rotate(-3deg); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { white-space: nowrap; }
.nav a:not(.btn) { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--blue); transition: width .25s; }
.nav a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: var(--mist); border-radius: 14px; cursor: pointer; padding: 0; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop: duże logo z napisem z boku */
.brand-text { display: none; }
@media (min-width: 1041px) {
  .header-inner { min-height: 88px; align-items: flex-start; }
  .brand { display: flex; align-items: flex-start; gap: 18px; margin: 8px 0 -128px; }
  .brand img { width: 208px; height: 208px; border-width: 6px; }
  .brand-text { display: flex; flex-direction: column; line-height: 1.1; margin-top: 22px; color: var(--navy); }
  .brand-text strong { font: 700 1.5rem var(--font-h); letter-spacing: -.02em; }
  .brand-text small { font-size: .78rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 5px; white-space: nowrap; }
  .nav { align-self: center; margin-left: auto; }
  .brand img, .brand { transition: width .3s, height .3s, margin .3s; }
  .site-header.scrolled .brand { margin: 8px 0 -40px; }
  .site-header.scrolled .brand img { width: 88px; height: 88px; border-width: 4px; }
  .site-header.scrolled .brand-text { margin-top: 12px; }
  main > .hero { padding-top: 168px; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -10%, var(--sky), transparent 65%),
    radial-gradient(600px 400px at -5% 100%, #e7f5fb, transparent 70%),
    var(--mist);
  padding: clamp(64px, 9vw, 104px) 0 clamp(64px, 9vw, 110px);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-d); background: #fff; padding: 8px 16px; border-radius: 999px; box-shadow: 0 6px 18px -10px rgba(11, 42, 111, .4); margin-bottom: 22px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--peach); box-shadow: 0 0 0 4px rgba(255, 181, 138, .3); }
.hl { background: linear-gradient(120deg, var(--blue), #4aa3ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 34em; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { font-size: .9rem; font-weight: 600; color: var(--navy); background: #fff; border: 1px solid var(--line); padding: 7px 14px 7px 32px; border-radius: 999px; position: relative; }
.chips li::before { content: ""; position: absolute; left: 12px; top: 50%; width: 12px; height: 12px; margin-top: -6px; border-radius: 50%; background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6.2l2 2 4-4.4' fill='none' stroke='%230b6e57' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }

.hero-visual { position: relative; }
.scope { position: relative; z-index: 2; background: #fff; border-radius: 32px; padding: 20px 20px 24px; box-shadow: var(--shadow); border: 1px solid rgba(217, 227, 243, .8); }
.scope-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; color: var(--muted); background: var(--mist); padding: 6px 12px; border-radius: 999px; }
.pill i { width: 8px; height: 8px; border-radius: 50%; background: #3ac28f; animation: pulse 1.8s infinite; }
.scope-labels { display: flex; gap: 10px; font-size: .75rem; }
.scope-labels b { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; color: var(--muted); }
.scope-labels b::before { content: ""; width: 14px; height: 4px; border-radius: 4px; background: currentColor; }
.l1 { color: var(--navy) !important; } .l2 { color: var(--blue) !important; } .l3 { color: #8db9f2 !important; }
#wave { width: 100%; height: auto; display: block; border-radius: 18px; background: linear-gradient(180deg, #fbfdff, var(--mist)); }
.scope-note { display: flex; flex-direction: column; gap: 2px; margin-top: 14px; padding: 12px 16px; background: linear-gradient(135deg, #eaf3ff, #f0fbf7); border-radius: 16px; font-size: .9rem; color: var(--muted); }
.scope-note strong { color: var(--navy); font-family: var(--font-h); font-size: 1rem; }
.orb { position: absolute; border-radius: 50%; z-index: 1; filter: blur(2px); }
.orb-a { width: 150px; height: 150px; right: -40px; top: -40px; background: radial-gradient(circle at 30% 30%, #fff, var(--peach)); opacity: .7; }
.orb-b { width: 110px; height: 110px; left: -34px; bottom: -30px; background: radial-gradient(circle at 30% 30%, #fff, #8db9f2); opacity: .8; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(58, 194, 143, .5); } 70%, 100% { box-shadow: 0 0 0 8px rgba(58, 194, 143, 0); } }

/* Sekcje */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-tint { background: var(--mist); }
.kicker { font-weight: 800; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.kicker.light { color: #a9cdfa; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.sub { font-size: 1.1rem; color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 6vw, 88px); align-items: start; }
.split h2 { max-width: 12em; }
.prose p { color: var(--muted); }
.prose .big { font: 500 1.35rem/1.45 var(--font-h); color: var(--navy); letter-spacing: -.01em; }
.prose .big strong { background: linear-gradient(transparent 62%, rgba(255, 181, 138, .55) 62%); font-weight: 600; }

/* Kroki */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; position: relative; }
.step { background: #fff; border-radius: var(--r); padding: 30px 28px 32px; box-shadow: var(--shadow); border: 1px solid rgba(217, 227, 243, .7); position: relative; transition: transform .25s; }
.step:hover { transform: translateY(-5px); }
.step:not(:last-child)::after { content: ""; position: absolute; top: 52px; right: -22px; width: 22px; height: 2px; background: repeating-linear-gradient(90deg, var(--blue) 0 5px, transparent 5px 9px); z-index: 2; }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 16px; font: 700 1.05rem var(--font-h); color: #fff; background: linear-gradient(135deg, var(--blue), var(--navy)); margin-bottom: 20px; }
.step:nth-child(2) .step-n { background: linear-gradient(135deg, #4aa3ff, var(--blue)); }
.step:nth-child(3) .step-n { background: linear-gradient(135deg, #ff9c68, #ffb58a); color: var(--navy); }
.step p { color: var(--muted); margin: 0; }

/* Zakładki */
.tabs { display: inline-flex; padding: 6px; background: var(--mist); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 30px; }
.tabs button { font: 700 1rem var(--font-b); border: 0; background: transparent; color: var(--muted); padding: 12px 26px; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s, box-shadow .2s; }
.tabs button[aria-selected="true"] { background: #fff; color: var(--navy); box-shadow: 0 6px 16px -8px rgba(11, 42, 111, .5); }
.panel { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 5vw, 64px); align-items: start; background: linear-gradient(135deg, #f4f8fe, #eaf3ff); border-radius: 32px; padding: clamp(28px, 5vw, 56px); }
.panel[hidden] { display: none; }
.panel-intro p { color: var(--muted); margin: 0; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding: 14px 18px 14px 56px; background: #fff; border-radius: 16px; font-weight: 500; box-shadow: 0 8px 20px -14px rgba(11, 42, 111, .5); }
.ticks li::before { content: ""; position: absolute; left: 16px; top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%; background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Cpath d='M7 13.4l4 4 8-8.6' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }
.plasticity { margin: 40px 0 0; padding: 26px 32px; border-left: 5px solid var(--peach); background: #fffaf6; border-radius: 0 20px 20px 0; }
.plasticity p { margin: 0; font: 500 1.15rem/1.6 var(--font-h); color: var(--navy); letter-spacing: -.01em; }

/* O mnie */
.about { display: grid; grid-template-columns: 380px 1fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.about-card { background: #fff; border-radius: 32px; padding: 36px 30px; text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(217, 227, 243, .7); }
.avatar { width: 168px; height: 168px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; display: grid; place-items: center; font: 700 3rem var(--font-h); color: #fff; letter-spacing: -.03em; background: radial-gradient(circle at 30% 25%, #4aa3ff, var(--navy)); box-shadow: 0 0 0 8px var(--sky), 0 0 0 9px var(--line); }
.tags { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tags li { font-size: .85rem; font-weight: 600; color: var(--blue-d); background: var(--mist); padding: 6px 12px; border-radius: 999px; }

/* Cennik */
.prices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; }
.price { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 34px 32px; display: flex; flex-direction: column; align-items: flex-start; transition: transform .25s, box-shadow .25s; }
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price:first-child { background: linear-gradient(160deg, #fff, #eef5ff); border-color: #bcd6f7; }
.badge { font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); background: var(--peach); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.badge-soft { background: var(--mint); }
.amount { font: 700 3.4rem/1 var(--font-h); color: var(--navy); letter-spacing: -.04em; margin: 8px 0 14px; }
.amount small { font-size: 1.2rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price .muted { flex: 1; }

/* Rezerwacja */
.booking { background: radial-gradient(800px 500px at 100% 0, #1a4aa8, transparent 60%), var(--navy); color: #fff; position: relative; }
.booking h2 { color: #fff; }
.booking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 6vw, 80px); align-items: start; }
.booking-intro p { color: #c8dbf8; }
.mini { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.mini li { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); padding: 12px 16px; border-radius: 14px; font-weight: 600; }
.form { background: #fff; color: var(--ink); border-radius: 28px; padding: clamp(24px, 4vw, 40px); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .6); }
fieldset { border: 0; padding: 0; margin: 0 0 26px; min-width: 0; }
legend { font: 600 1.02rem var(--font-h); color: var(--navy); padding: 0; margin-bottom: 12px; }
.choice-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 14px 16px; border: 2px solid var(--line); border-radius: 16px; font-weight: 600; transition: border-color .2s, background .2s; height: 100%; }
.choice em { font-style: normal; font-weight: 800; color: var(--blue-d); white-space: nowrap; }
.choice input:checked + span { border-color: var(--blue); background: #eef5ff; }
.choice input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.field em { font-style: normal; font-weight: 500; color: var(--muted); }
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], textarea {
  width: 100%; font: 500 1rem var(--font-b); color: var(--ink); background: var(--mist);
  border: 2px solid transparent; border-radius: 14px; padding: 13px 16px; transition: border-color .2s, background .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
textarea { resize: vertical; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.slots { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.slots .muted { margin: 0; font-size: .92rem; }
.slot { position: relative; }
.slot input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.slot span { display: block; padding: 9px 16px; border: 2px solid var(--line); border-radius: 999px; font-weight: 700; font-size: .95rem; transition: all .2s; }
.slot input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.slot input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.slot:hover span { border-color: var(--blue); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: var(--muted); margin-bottom: 20px; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--blue); flex: none; }
.hp { position: absolute; left: -9999px; }
.form-msg { margin: 16px 0 0; font-weight: 600; text-align: center; min-height: 1.4em; }
.form-msg.ok { color: #0b7a58; }
.form-msg.err { color: #c0392b; }
.form :invalid.touched { border-color: #e88a7f; }

/* Kontakt */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.contact-list li { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.contact-list span { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-list a, .contact-list b { font: 600 1.1rem var(--font-h); color: var(--navy); text-decoration: none; }
.contact-list a:hover { color: var(--blue); }

/* Stopka */
.site-footer { background: var(--mist); border-top: 1px solid var(--line); padding: 36px 0; font-size: .9rem; color: var(--muted); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 24px 40px; align-items: center; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand img { border-radius: 50%; box-shadow: 0 10px 24px -12px rgba(11, 42, 111, .5); }
.footer-brand strong { font: 700 1.05rem var(--font-h); color: var(--navy); }
.footer-brand p, .disclaimer, .copy { margin: 0; }

/* Animacje wejścia */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* Responsywność */
@media (max-width: 960px) {
  .hero-grid, .split, .about, .booking-grid, .contact, .panel { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .about-card { max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; padding: 10px 20px 22px; border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px -24px rgba(11, 42, 111, .35); display: none; }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--mist); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 14px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .brand { margin-bottom: -26px; }
  .brand img { width: 84px; height: 84px; }
  .prices, .choice-row, .grid-2 { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .tabs { display: flex; width: 100%; }
  .tabs button { flex: 1; padding: 12px 10px; }
  .hero-cta .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
