:root {
  --roza: #b34a6e;
  --roza-c: #8e3a58;
  --krem: #faf6f2;
  --krem-c: #f3ece4;
  --grafit: #2b2b2e;
  --szary: #6b6560;
  --zielen: #41604d;
  --bialy: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 300; color: var(--grafit); background: var(--krem); line-height: 1.65; font-size: 17px; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: .9rem; }
h3 { font-size: 1.45rem; color: var(--roza-c); margin-bottom: .6rem; }
a { color: var(--roza-c); }
.center { text-align: center; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.kicker { font-family: var(--sans); text-transform: uppercase; letter-spacing: .35em; font-size: .74rem; font-weight: 500; color: var(--roza); margin-bottom: .8rem; display: flex; align-items: center; gap: 14px; }
.kicker::after { content: ""; height: 1px; width: 46px; background: linear-gradient(90deg, var(--roza), transparent); }
.kicker.center { justify-content: center; }
.kicker.center::before { content: ""; height: 1px; width: 46px; background: linear-gradient(90deg, transparent, var(--roza)); }
h2.center { position: relative; }
h2.center::before { content: "✿"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -56%); font-size: 7.5rem; color: var(--roza); opacity: .055; pointer-events: none; line-height: 1; }

.topbar { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 10px 26px; background: rgba(250,246,242,.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(43,43,46,.07); }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--grafit); font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.brand img { border-radius: 50%; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { text-decoration: none; color: var(--grafit); font-size: .95rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }
.nav a:hover { color: var(--roza); }
.nav-cta { border: 1.5px solid var(--roza); border-radius: 999px; padding: 7px 20px; color: var(--roza-c); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--grafit); margin: 5px 0; transition: .3s; }

.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 2.5s ease; will-change: opacity, transform; animation: kb 36s ease-in-out infinite alternate; }
.slide:nth-child(2) { animation-delay: -9s; }
.slide:nth-child(3) { animation-delay: -18s; }
.slide:nth-child(4) { animation-delay: -27s; }
.slide:nth-child(5) { animation-delay: -13s; }
.slide.on { opacity: 1; }
@keyframes kb { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,15,18,.35) 0%, rgba(20,15,18,.25) 45%, rgba(20,15,18,.55) 100%); }
.hero-inner { position: relative; z-index: 2; text-align: center; color: #fff; padding: 120px 22px 30px; }
.hero-kicker, .hero h1, .hero-sub, .hero-cta { opacity: 0; animation: rise .9s ease forwards; }
.hero h1 { animation-delay: .15s; }
.hero-sub { animation-delay: .35s; }
.hero-cta { animation-delay: .55s; }
.hero-badges span { opacity: 0; animation: rise .7s ease forwards; animation-delay: .8s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-kicker { text-transform: uppercase; letter-spacing: .4em; font-size: .8rem; font-weight: 400; opacity: .92; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(3rem, 8vw, 5.6rem); font-weight: 500; text-shadow: 0 2px 26px rgba(0,0,0,.35); }
.hero-sub { max-width: 620px; margin: 1.1rem auto 1.8rem; font-size: 1.12rem; font-weight: 300; opacity: .95; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 13px 32px; border-radius: 999px; text-decoration: none; font-size: 1rem; letter-spacing: .05em; transition: .25s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(179,74,110,.28); }
.hero-dots { position: absolute; right: 26px; bottom: 96px; z-index: 3; display: flex; flex-direction: column; gap: 9px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.85); background: transparent; padding: 0; cursor: pointer; transition: .3s; }
.hero-dots button.on { background: #fff; transform: scale(1.25); }
.btn-solid { background: var(--roza); color: #fff; border: 1.5px solid var(--roza); }
.btn-solid:hover { background: var(--roza-c); border-color: var(--roza-c); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.85); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.hero-badges { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; padding: 26px 20px 30px; color: #fff; font-size: .92rem; letter-spacing: .04em; }
.hero-badges span { display: flex; align-items: center; gap: 8px; }
.hero-badges span::before { content: "✿"; color: #e6a5bc; font-size: .85rem; }

.sec { padding: 88px 0; }
.sec-tint { background: var(--krem-c); }
.lead { max-width: 640px; margin: 0 auto 2rem; color: var(--szary); }
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: start; }
.col-txt p { margin-bottom: 1.1rem; }
.col-img { display: grid; gap: 20px; }
.col-img img { border-radius: 14px; box-shadow: 0 18px 44px rgba(43,43,46,.16); }
.img-offset { margin-left: 12%; width: 88%; }
blockquote { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--roza-c); border-left: 3px solid var(--roza); padding-left: 20px; margin-top: 1.6rem; }
blockquote footer { font-family: var(--sans); font-style: normal; font-size: .9rem; color: var(--szary); margin-top: .4rem; }

.price-card { max-width: 460px; margin: 1.4rem auto 2.6rem; background: var(--bialy); border-radius: 18px; padding: 30px 34px; text-align: center; box-shadow: 0 16px 40px rgba(43,43,46,.10); border-top: 4px solid var(--roza); }
.price { font-family: var(--serif); font-size: 3.4rem; font-weight: 600; color: var(--roza-c); }
.price-per { font-size: 1.05rem; color: var(--szary); margin-left: 8px; }
.price-note { color: var(--szary); font-size: .92rem; margin-top: .4rem; }
.floors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 2.2rem; }
.floor { background: var(--bialy); border-radius: 14px; padding: 26px 26px 20px; box-shadow: 0 10px 30px rgba(43,43,46,.07); }
.floor ul { list-style: none; }
.floor li { padding: 7px 0 7px 24px; position: relative; font-size: .97rem; border-bottom: 1px dashed rgba(43,43,46,.09); }
.floor li:last-child { border-bottom: 0; }
.floor li::before { content: "✿"; position: absolute; left: 0; color: var(--roza); font-size: .8rem; top: 9px; }
.amenities { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.amenities span { background: var(--bialy); border: 1px solid rgba(43,43,46,.1); border-radius: 999px; padding: 8px 18px; font-size: .93rem; }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 2rem; grid-auto-flow: dense; }
.grid a { display: block; overflow: hidden; border-radius: 12px; aspect-ratio: 4 / 3; position: relative; }
.grid a:nth-child(1), .grid a:nth-child(11) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.grid a:hover img { transform: scale(1.06); }
.grid a::after { content: attr(data-t); position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 11px; background: linear-gradient(transparent, rgba(20,15,18,.66)); color: #fff; font-size: .85rem; letter-spacing: .03em; opacity: 0; transition: opacity .35s; pointer-events: none; }
.grid a:hover::after { opacity: 1; }

.quote-band { position: relative; background-image: url('/assets/img/roza-morze.jpg'); background-size: cover; background-position: center; padding: 110px 22px; text-align: center; }
.quote-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(60,20,35,.55), rgba(60,20,35,.45)); }
.qb-inner { position: relative; max-width: 720px; margin: 0 auto; color: #fff; }
.qb-mark { font-family: var(--serif); font-size: 6rem; line-height: .3; opacity: .55; margin-bottom: 1.6rem; }
.qb-text { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.35; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.qb-author { margin-top: 1.3rem; font-size: .9rem; letter-spacing: .22em; text-transform: uppercase; opacity: .85; }

.pog-teaser { background: #f6e7ed; border-top: 1px solid rgba(179,74,110,.14); border-bottom: 1px solid rgba(179,74,110,.14); }
.pt-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 22px; padding: 20px 22px; font-size: 1rem; }
.pt-item strong { font-family: var(--serif); font-size: 1.25rem; color: var(--roza-c); margin-left: 6px; }
.pt-sep { width: 1px; height: 22px; background: rgba(179,74,110,.25); }
.pt-link { color: var(--roza-c); font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(179,74,110,.4); margin-left: 8px; }
.pt-link:hover { border-bottom-color: var(--roza-c); }

.nav a.cur { color: var(--roza-c); }
.nav a.cur:not(.nav-cta) { border-bottom: 2px solid var(--roza); padding-bottom: 3px; }

#toTop { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--roza); color: #fff; font-size: 1.25rem; cursor: pointer; box-shadow: 0 10px 24px rgba(179,74,110,.35); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .35s; }
#toTop.show { opacity: 1; visibility: visible; transform: none; }
#toTop:hover { background: var(--roza-c); }

.foot-orn { color: #a9718a; letter-spacing: .2em; margin: 4px 0 8px; font-size: .8rem; }
.foot-links { margin-top: 8px; font-size: .95rem; }
.foot-links a { color: #e8cdd9; text-decoration: none; }
.foot-links a:hover { color: #fff; }

.attractions { list-style: none; margin-top: .6rem; }
.attractions li { padding: 8px 0 8px 26px; position: relative; }
.attractions li::before { content: "✿"; position: absolute; left: 0; color: var(--roza); top: 10px; font-size: .85rem; }
.jaro-attr { margin-top: 3rem; }
.jaro-attr h3 { text-align: center; font-size: 1.55rem; margin-bottom: 1.2rem; }
.attr-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 880px; margin: 0 auto; }
.attr-links a { background: var(--bialy); border: 1px solid rgba(43,43,46,.12); border-radius: 999px; padding: 9px 18px; font-size: .94rem; text-decoration: none; color: var(--grafit); transition: .2s; }
.attr-links a:hover { border-color: var(--roza); color: var(--roza-c); box-shadow: 0 6px 16px rgba(179,74,110,.15); }
.attr-note { text-align: center; color: var(--szary); font-size: .95rem; margin-top: 1.2rem; }
.distances { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.distances div { background: var(--bialy); border-radius: 14px; padding: 20px 34px; text-align: center; box-shadow: 0 10px 26px rgba(43,43,46,.08); }
.dist-num { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--roza-c); }
.dist-lbl { font-size: .88rem; color: var(--szary); letter-spacing: .05em; }

.contact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 2rem; }
.contact-info h3 { font-size: 1.7rem; }
.contact-links { margin: 1rem 0 1.4rem; }
.contact-links a { text-decoration: none; font-size: 1.15rem; line-height: 2; }
.mapa { border-radius: 14px; overflow: hidden; box-shadow: 0 12px 32px rgba(43,43,46,.12); }
.mapa iframe { width: 100%; height: 300px; border: 0; display: block; }
.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: .88rem; letter-spacing: .05em; text-transform: uppercase; color: var(--szary); }
.contact-form input, .contact-form textarea { font-family: var(--sans); font-size: 1rem; padding: 13px 16px; border: 1px solid rgba(43,43,46,.16); border-radius: 10px; background: var(--bialy); color: var(--grafit); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--roza); outline-offset: 0; border-color: transparent; }
.contact-form .btn { align-self: flex-start; border: 0; cursor: pointer; font-family: var(--sans); }
.hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }
.form-ok { background: #e5f4e8; color: #22633a; border-radius: 10px; padding: 14px 18px; margin-bottom: 16px; }
.form-err { background: #fbe7e7; color: #8f2626; border-radius: 10px; padding: 14px 18px; margin-bottom: 16px; }

.foot { text-align: center; padding: 44px 20px 34px; background: var(--grafit); color: #cfc8c2; }
.foot img { margin: 0 auto 10px; opacity: .9; }
.foot-small { font-size: .85rem; margin-top: 6px; }
.foot-small a { color: #cfc8c2; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(15,12,14,.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 8px; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: none; border: 0; color: #fff; font-size: 2.6rem; cursor: pointer; opacity: .8; padding: 10px 18px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: 12px; right: 18px; }
.lb-prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 8px; top: 50%; transform: translateY(-50%); }

.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero-kicker, .hero h1, .hero-sub, .hero-cta, .hero-badges span { opacity: 1; animation: none; }
  .slide { animation: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 900px) {
  .two-col, .contact-cols { grid-template-columns: 1fr; gap: 34px; }
  .floors { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid a:nth-child(1), .grid a:nth-child(11) { grid-column: span 2; grid-row: span 1; aspect-ratio: 4 / 3; }
  .hero-dots { right: 14px; bottom: 120px; }
  .quote-band { padding: 76px 22px; background-attachment: scroll; }
  .img-offset { margin-left: 0; width: 100%; }
  .nav { position: fixed; top: 62px; right: 0; left: 0; background: var(--krem); flex-direction: column; padding: 26px; gap: 20px; border-bottom: 1px solid rgba(43,43,46,.1); transform: translateY(-130%); transition: transform .35s ease; }
  .nav.open { transform: translateY(0); }
  .burger { display: block; }
  .sec { padding: 62px 0; }
}
