:root {
  --color-forest: #0f2f27;
  --color-forest-2: #173d33;
  --color-forest-soft: #234d42;
  --color-gold: #c8a46b;
  --color-gold-soft: #ead9b7;
  --color-cream: #f6f1e8;
  --color-warm-white: #fffdf8;
  --color-stone: #d8cdbd;
  --color-text: #1c1c1a;
  --color-muted: #6d675f;
  --color-border: #dfd3c1;
  --shadow-soft: 0 26px 70px rgba(15, 47, 39, .14);
  --shadow-gold: 0 18px 50px rgba(200, 164, 107, .22);
  --radius-md: 20px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 76px;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at 8% 0%, rgba(200,164,107,.12), transparent 28rem),
    linear-gradient(180deg, var(--color-warm-white), var(--color-cream));
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { color: var(--color-gold); }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 4px; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.narrow { max-width: 900px; }
.section { padding: 68px 0; position: relative; }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  transform: translateY(-150%); background: var(--color-forest); color: #fff;
  padding: 10px 14px; border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky; top: 0; z-index: 900; min-height: var(--header-height);
  background: rgba(255, 253, 248, .9); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 164, 107, .28);
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,107,.75), transparent);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-height); }
.brand { display: inline-grid; grid-template-columns: auto auto; column-gap: 10px; align-items: center; font-weight: 800; text-decoration: none; color: var(--color-forest); line-height: 1; }
.brand-mark { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--color-forest-soft), var(--color-forest)); color: var(--color-gold-soft); border: 1px solid rgba(200,164,107,.45); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.brand-text { letter-spacing: .04em; text-transform: uppercase; }
.brand-sub { color: var(--color-gold); font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; letter-spacing: .02em; margin-top: 2px; }
.nav-toggle { width: 46px; height: 46px; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-warm-white); display: grid; place-content: center; gap: 4px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--color-forest); border-radius: 2px; }
.primary-nav {
  position: fixed; inset: var(--header-height) 0 auto 0; display: none; flex-direction: column; gap: 4px;
  background: var(--color-warm-white); padding: 18px 16px 26px; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-soft);
}
.primary-nav.active { display: flex; }
.primary-nav a { padding: 12px 14px; text-decoration: none; border-radius: 999px; font-weight: 700; color: var(--color-forest); }
.primary-nav a:hover, .primary-nav a:focus-visible { background: var(--color-cream); color: var(--color-forest); }
.header-phone { display: none; text-decoration: none; background: var(--color-forest); color: var(--color-gold-soft); padding: 11px 16px; border-radius: 999px; font-weight: 800; border: 1px solid rgba(200,164,107,.5); }
.header-phone:hover { background: var(--color-forest-2); color: #fff; }

.hero { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 8% auto auto -9rem; width: 22rem; height: 22rem; border-radius: 50%;
  background: rgba(15,47,39,.08); filter: blur(6px);
}
.hero-inner { display: grid; gap: 38px; align-items: center; padding: 72px 0 58px; position: relative; }
.hero-copy { max-width: 620px; min-width: 0; }
h1, h2, h3 { margin: 0 0 18px; color: var(--color-forest); line-height: 1.04; letter-spacing: -.032em; font-family: var(--font-heading); font-weight: 600; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 8.2vw, 5.35rem); max-width: 11ch; }
.hero h1, .page-hero h1 { font-size: clamp(2.65rem, 6.2vw, 4.9rem); max-width: 12.5ch; }
h2 { font-size: clamp(2.35rem, 7vw, 4.05rem); }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.08rem, 3vw, 1.25rem); color: var(--color-muted); max-width: 720px; }
.eyebrow { color: var(--color-gold); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 900; margin-bottom: 14px; }
.microcopy { font-size: .95rem; margin-top: 16px; color: var(--color-muted); }
.sub { max-width: 720px; color: var(--color-muted); font-size: 1.08rem; }
.cta-group { display: flex; flex-direction: column; gap: 12px; margin: 30px 0 8px; }
.btn-primary, .btn-secondary {
  display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 13px 24px;
  border-radius: 999px; font-weight: 900; text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-primary { background: var(--color-gold); color: #1b1812; box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--color-gold-soft); color: #15120e; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--color-forest); border-color: rgba(15,47,39,.22); }
.btn-secondary:hover { background: var(--color-forest); color: #fff; transform: translateY(-1px); border-color: var(--color-forest); }
.cta-center { margin-top: 30px; text-align: center; }
.cta-stack, .inline-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.inline-actions { align-items: flex-start; margin-top: 26px; }
.text-link { color: var(--color-forest); font-weight: 900; text-decoration-color: rgba(200,164,107,.7); }
.text-link:hover { color: var(--color-gold); }
.light-actions .text-link, .aquabooster .text-link { color: var(--color-gold-soft); }
.light-actions .text-link:hover, .aquabooster .text-link:hover { color: #fff; }

.hero-visual { position: relative; border-radius: 44px 44px 12px 44px; padding: 10px; background: linear-gradient(135deg, rgba(200,164,107,.95), rgba(234,217,183,.35)); box-shadow: var(--shadow-soft); }
.hero-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 36px 36px 8px 36px; background: var(--color-forest); }
.light-line {
  position: absolute; left: 6%; right: 6%; top: -13px; height: 38px; z-index: 2; pointer-events: none; opacity: .92;
  background: url("data:image/svg+xml,%3Csvg width='640' height='52' viewBox='0 0 640 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 29 C88 3 136 7 203 28 C274 50 327 50 401 24 C476 -2 536 8 630 28' fill='none' stroke='%23d9bd86' stroke-width='7' stroke-linecap='round' opacity='.34'/%3E%3Cpath d='M10 28 C88 4 136 8 203 28 C274 48 327 48 401 24 C476 0 536 9 630 28' fill='none' stroke='%23fffaf0' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M10 28 C88 4 136 8 203 28 C274 48 327 48 401 24 C476 0 536 9 630 28' fill='none' stroke='%23c8a46b' stroke-width='1.35' stroke-linecap='round' opacity='.72'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  filter: drop-shadow(0 3px 5px rgba(15,47,39,.18));
}
.light-line::before, .light-line::after {
  content: ""; position: absolute; top: 23px; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,250,240,.95); box-shadow: 0 0 10px rgba(255,250,240,.48);
}
.light-line::before { left: .4%; }
.light-line::after { right: .4%; }
.hero-badge { position: absolute; left: 24px; right: 24px; bottom: 24px; display: grid; gap: 2px; padding: 14px 16px; border-radius: 20px; background: rgba(15,47,39,.88); color: #fff; border: 1px solid rgba(234,217,183,.45); backdrop-filter: blur(10px); }
.hero-badge strong { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-gold-soft); line-height: 1; }
.hero-badge span { font-size: .84rem; color: rgba(255,255,255,.82); }

.dlaczego { background: var(--color-warm-white); }
.atuty { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 14px; }
.atuty li { position: relative; display: flex; gap: 14px; align-items: center; background: linear-gradient(135deg, #fff, var(--color-cream)); padding: 18px; border-radius: 22px 22px 8px 22px; font-weight: 800; border: 1px solid rgba(200,164,107,.28); box-shadow: 0 12px 34px rgba(15,47,39,.05); }
.atuty li::before { content: ""; position: absolute; inset: 12px auto 12px 0; width: 3px; border-radius: 99px; background: var(--color-gold); }
.atuty span { color: var(--color-gold); font-size: .82rem; font-weight: 900; }
.signature-quote, .owner-quote { border-left: 3px solid var(--color-gold); padding: 14px 0 14px 18px; color: var(--color-forest); font-family: var(--font-heading); font-size: clamp(1.35rem, 4vw, 1.8rem); line-height: 1.18; margin: 28px 0; }
.owner-quote { background: rgba(200,164,107,.08); border-radius: 0 20px 20px 0; }
.section-heading { margin-bottom: 30px; }
.accordion { display: grid; gap: 14px; }
.accordion-item { position: relative; background: rgba(255,253,248,.92); border: 1px solid rgba(200,164,107,.28); border-radius: 24px 24px 10px 24px; overflow: hidden; box-shadow: 0 12px 34px rgba(15,47,39,.06); }
.accordion-item::after { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px; background: var(--color-gold); border-radius: 99px; }
.accordion-header { width: 100%; border: 0; background: transparent; color: var(--color-forest); display: flex; justify-content: space-between; align-items: center; padding: 21px 20px 18px 22px; text-align: left; font-weight: 900; cursor: pointer; }
.accordion-icon { color: var(--color-gold); font-size: 1.5rem; line-height: 1; }
.accordion-content { display: none; padding: 0 20px 22px 22px; color: var(--color-muted); }
.accordion-item.active .accordion-content { display: block; }
.accordion-item.active .accordion-icon { transform: rotate(45deg); }

.split { display: grid; gap: 34px; align-items: center; }
.media-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-forest); box-shadow: var(--shadow-soft); min-height: 280px; }
.media-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(234,217,183,.42); border-radius: 28px; z-index: 1; pointer-events: none; }
.media-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.o-mnie { background: linear-gradient(180deg, var(--color-cream), var(--color-warm-white)); }
.accent-card { padding: 12px; background: linear-gradient(135deg, var(--color-gold), rgba(234,217,183,.5)); }
.aquabooster { background: var(--color-forest); color: rgba(255,255,255,.86); overflow: hidden; }
.aquabooster::before {
  content: ""; position: absolute; inset: 0; opacity: .34; pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.12), transparent 25rem),
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 35%);
}
.aquabooster h2 { color: #fff; }
.aquabooster .eyebrow { color: var(--color-gold-soft); }
.aquabooster .split { position: relative; z-index: 1; }
.aquabooster .btn-primary { background: var(--color-gold-soft); }
.galeria { display: grid; gap: 18px; }
.galeria figure { margin: 0; background: var(--color-warm-white); border-radius: 24px 24px 10px 24px; overflow: hidden; border: 1px solid rgba(200,164,107,.28); box-shadow: 0 12px 34px rgba(15,47,39,.06); }
.galeria img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--color-stone); transition: transform .35s ease; }
.galeria figure:hover img { transform: scale(1.03); }
.galeria figcaption { padding: 14px 16px; font-weight: 800; color: var(--color-forest); border-top: 1px solid rgba(200,164,107,.22); }

.kontakt { background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-cream) 100%); }
.contact-panel { display: grid; gap: 28px; background: var(--color-forest); color: rgba(255,255,255,.84); border: 1px solid rgba(200,164,107,.45); border-radius: 38px 38px 12px 38px; padding: 24px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.contact-panel::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 20% 0%, rgba(200,164,107,.2), transparent 22rem); }
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel h2 { color: #fff; }
.contact-panel .eyebrow { color: var(--color-gold-soft); }
.page-hero { overflow: hidden; }
.contact-hero, .pricing-hero { background: linear-gradient(135deg, var(--color-warm-white), var(--color-cream)); }
.pricing-intro { background: var(--color-warm-white); }
.pricing-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pricing-nav a { display: inline-flex; align-items: center; min-height: 42px; padding: 9px 14px; border-radius: 999px; background: var(--color-cream); color: var(--color-forest); border: 1px solid rgba(200,164,107,.34); text-decoration: none; font-weight: 800; }
.pricing-nav a:hover { background: var(--color-forest); color: #fff; }
.pricing-section:nth-of-type(odd) { background: rgba(255,253,248,.72); }
.price-grid { display: grid; gap: 16px; }
.price-card { display: grid; gap: 18px; background: var(--color-warm-white); border: 1px solid rgba(200,164,107,.3); border-radius: 26px 26px 10px 26px; padding: 20px; box-shadow: 0 12px 34px rgba(15,47,39,.06); position: relative; overflow: hidden; }
.price-card::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px; border-radius: 99px; background: var(--color-gold); }
.price-card h3 { font-family: var(--font-heading); font-size: clamp(1.45rem, 5vw, 2rem); line-height: 1.05; margin-bottom: 10px; }
.price-card p { color: var(--color-muted); margin-bottom: 0; }
.price-list { display: grid; gap: 8px; margin: 0; align-content: start; }
.price-list div { display: flex; justify-content: space-between; gap: 14px; padding: 10px 12px; border-radius: 14px; background: var(--color-cream); border: 1px solid rgba(216,205,189,.6); }
.price-list dt { color: var(--color-muted); font-weight: 700; }
.price-list dd { margin: 0; color: var(--color-forest); font-weight: 900; white-space: nowrap; }
.pricing-note { background: var(--color-cream); }
.contact-details { margin-top: 24px; }
.contact-details a { font-weight: 800; color: #fff; }
.contact-form { display: grid; gap: 14px; background: var(--color-warm-white); color: var(--color-text); padding: 20px; border-radius: 28px 28px 8px 28px; border: 1px solid rgba(234,217,183,.7); }
.field-group { display: grid; gap: 6px; }
.field-group label { font-weight: 800; color: var(--color-forest); }
input, textarea { width: 100%; border: 1px solid var(--color-border); border-radius: 16px; padding: 13px 14px; background: var(--color-cream); color: var(--color-text); }
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--color-gold); background: #fff; }
input.error, textarea.error { border-color: #a43d3d; background: #fff7f7; }
.form-note { font-size: .9rem; color: var(--color-muted); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status-wrap { padding-top: 18px; }
.form-status { padding: 14px 16px; border-radius: 14px; font-weight: 800; }
.form-status.success { background: #e7f5ea; color: #1b6930; }
.form-status.error { background: #fff0ef; color: #96362f; }
.map-placeholder { min-height: 220px; display: grid; place-items: center; text-align: center; background: rgba(255,253,248,.1); border: 1px dashed rgba(234,217,183,.45); border-radius: var(--radius-md); color: rgba(255,255,255,.78); padding: 20px; margin-top: 24px; }

.site-footer { background: var(--color-forest); color: rgba(255,255,255,.78); padding: 58px 0 22px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 44px; background: url("data:image/svg+xml,%3Csvg width='640' height='70' viewBox='0 0 640 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 35 C90 4 132 4 205 34 S330 65 420 28 S540 12 640 34' fill='none' stroke='%23c8a46b' stroke-width='2' stroke-linecap='round' opacity='.85'/%3E%3C/svg%3E") center/100% 100% no-repeat; opacity: .65; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; gap: 28px; position: relative; z-index: 1; }
.footer-heading { color: var(--color-gold-soft); font-family: var(--font-body); font-size: .86rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(234,217,183,.2); color: rgba(255,255,255,.66); font-size: .9rem; }
.footer-brand .brand-mark { background: radial-gradient(circle at 35% 30%, var(--color-forest-soft), #08211b); }
.footer-brand .brand-text { color: #fff; }
.mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 850; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; border-radius: 999px; background: rgba(15,47,39,.94); border: 1px solid rgba(234,217,183,.4); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 999px; text-decoration: none; font-weight: 900; color: #fff; }
.mobile-cta a:last-child { background: var(--color-gold); color: #18140f; }
.back-to-top { position: fixed; right: 16px; bottom: 86px; width: 46px; height: 46px; border: 1px solid rgba(234,217,183,.45); border-radius: 50%; background: var(--color-forest); color: var(--color-gold-soft); box-shadow: var(--shadow-soft); cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }

@media (min-width: 560px) {
  .cta-group { flex-direction: row; flex-wrap: wrap; }
  .atuty { grid-template-columns: repeat(2, 1fr); }
  .galeria { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .container { width: min(100% - 48px, var(--container)); }
  .section { padding: 96px 0; }
  .nav-toggle { display: none; }
  .primary-nav { position: static; display: flex; flex-direction: row; align-items: center; background: transparent; padding: 0; border: 0; box-shadow: none; gap: 2px; }
  .primary-nav a { padding: 9px 11px; font-size: .94rem; }
  .header-phone { display: inline-flex; }
  .hero-inner { grid-template-columns: minmax(0, .9fr) minmax(340px, .95fr); padding: 88px 0; gap: 52px; }
  .hero h1, .page-hero h1 { font-size: clamp(3.25rem, 5.1vw, 4.75rem); }
  .accordion { grid-template-columns: repeat(2, 1fr); }
  .accordion-content { display: block; }
  .accordion-header { cursor: default; }
  .accordion-icon { display: none; }
  .split, .contact-panel { grid-template-columns: 1fr 1fr; }
  .split.reverse > :first-child { order: 2; }
  .split.reverse > :last-child { order: 1; }
  .contact-panel { padding: 46px; }
  .contact-form { padding: 26px; }
  .cta-stack, .inline-actions { flex-direction: row; flex-wrap: wrap; }
  .price-card { grid-template-columns: minmax(0, 1fr) minmax(240px, .45fr); padding: 24px; }
  .mobile-cta { display: none; }
  .back-to-top { bottom: 16px; }
}

@media (min-width: 1040px) {
  .primary-nav a { padding: 10px 14px; }
  .accordion { grid-template-columns: repeat(4, 1fr); }
  .galeria { grid-template-columns: repeat(4, 1fr); }
  .hero-inner { grid-template-columns: minmax(0, .82fr) minmax(440px, .98fr); }
  .hero h1, .page-hero h1 { font-size: clamp(3.45rem, 4.6vw, 4.65rem); }
  .hero-copy { max-width: 560px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
