*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--sand-light: #F7F1E8;
--sand-mid: #EDE0CC;
--sand-warm: #D4B896;
--sea-pale: #C2D8D2;
--sea-mid: #7FB3AC;
--sea-deep: #4E8A83;
--sky: #D8E9EF;
--rose-dust: #E8C8C4;
--rose-mid: #CFA09A;
--rose-deep: #B07A74;
--ink: #2E3A35;
--ink-mid: #5C6B62;
--ink-light: #8C9E95;
--gold: #C9A96E;
--white-warm: #FDFAF5;
}
html { scroll-behavior: smooth; }
body {
font-family: 'Jost', sans-serif;
background: var(--white-warm);
color: var(--ink);
overflow-x: hidden;
cursor: none;
}
/* Custom cursor */
.cursor {
position: fixed;
width: 12px; height: 12px;
background: var(--rose-mid);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transform: translate(-50%, -50%);
transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
mix-blend-mode: multiply;
}
.cursor-ring {
position: fixed;
width: 36px; height: 36px;
border: 1px solid var(--sea-mid);
border-radius: 50%;
pointer-events: none;
z-index: 9998;
transform: translate(-50%, -50%);
transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), width 0.4s ease, height 0.4s ease;
opacity: 0.6;
}
body:hover .cursor { opacity: 1; }
/* Nav */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.5s ease, backdrop-filter 0.5s ease;
}
nav.scrolled {
background: rgba(247, 241, 232, 0.88);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(196, 154, 154, 0.15);
}
.nav-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.15rem;
font-weight: 400;
letter-spacing: 0.08em;
color: var(--ink);
text-decoration: none;
display: flex;
flex-direction: column;
line-height: 1.2;
}
.nav-logo span { color: var(--rose-mid); font-style: italic; }
.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
font-size: 0.78rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--ink-mid);
text-decoration: none;
transition: color 0.3s ease;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -3px; left: 0;
width: 0; height: 1px;
background: var(--rose-mid);
transition: width 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
/* Hero */
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
position: relative;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 60% 70% at 75% 40%, rgba(194, 216, 210, 0.35) 0%, transparent 70%),
radial-gradient(ellipse 40% 50% at 20% 80%, rgba(232, 200, 196, 0.3) 0%, transparent 60%),
radial-gradient(ellipse 80% 60% at 50% 10%, rgba(216, 233, 239, 0.25) 0%, transparent 50%),
var(--sand-light);
}
.hero-left {
padding: 12rem 4rem 6rem 6rem;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
z-index: 2;
}
.hero-eyebrow {
font-size: 0.72rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--sea-deep);
margin-bottom: 1.8rem;
opacity: 0;
animation: fadeUp 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(3rem, 5vw, 4.8rem);
font-weight: 300;
line-height: 1.1;
color: var(--ink);
margin-bottom: 2rem;
opacity: 0;
animation: fadeUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title em {
font-style: italic;
color: var(--rose-deep);
display: block;
}
.hero-subtitle {
font-size: 1rem;
line-height: 1.8;
color: var(--ink-mid);
max-width: 38ch;
font-weight: 300;
margin-bottom: 3rem;
opacity: 0;
animation: fadeUp 1s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-actions {
display: flex;
gap: 1.5rem;
align-items: center;
opacity: 0;
animation: fadeUp 1s 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.btn-primary {
background: var(--rose-mid);
color: var(--white-warm);
padding: 0.95rem 2.2rem;
border-radius: 2px 14px 3px 12px;
font-size: 0.82rem;
letter-spacing: 0.1em;
text-transform: uppercase;
text-decoration: none;
transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease, background 0.3s ease;
box-shadow: 3px 8px 20px rgba(176, 122, 116, 0.3);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 4px 12px 28px rgba(176, 122, 116, 0.4);
background: var(--rose-deep);
}
.btn-ghost {
font-size: 0.82rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--ink-mid);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.6rem;
transition: color 0.3s ease, gap 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.btn-ghost:hover { color: var(--sea-deep); gap: 1rem; }
.btn-ghost-arrow { font-size: 1.2rem; }
.hero-right {
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
padding: 8rem 4rem 4rem 2rem;
opacity: 0;
animation: fadeIn 1.2s 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-artwork {
position: relative;
width: 100%;
max-width: 420px;
}
.hero-lotus {
width: 100%;
filter: drop-shadow(0 20px 50px rgba(78, 138, 131, 0.2));
}
.hero-orbits {
position: absolute;
inset: -20%;
pointer-events: none;
}
.orbit-ring {
position: absolute;
border-radius: 50%;
border: 1px solid;
animation: rotate linear infinite;
}
.orbit-1 {
inset: 15%;
border-color: rgba(194, 216, 210, 0.4);
animation-duration: 30s;
}
.orbit-2 {
inset: 5%;
border-color: rgba(232, 200, 196, 0.25);
animation-duration: 50s;
animation-direction: reverse;
}
.orbit-3 {
inset: 25%;
border-color: rgba(201, 169, 110, 0.2);
animation-duration: 20s;
}
.orbit-dot {
position: absolute;
width: 6px; height: 6px;
border-radius: 50%;
top: -3px; left: 50%;
transform: translateX(-50%);
}
.orbit-1 .orbit-dot { background: var(--sea-mid); }
.orbit-2 .orbit-dot { background: var(--rose-dust); }
.orbit-3 .orbit-dot { background: var(--gold); }
/* Wavy divider */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
/* Section base */
section { padding: 7rem 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 3rem; }
.section-label {
font-size: 0.7rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--sea-deep);
margin-bottom: 1.2rem;
}
.section-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 3.5vw, 3rem);
font-weight: 300;
line-height: 1.2;
color: var(--ink);
}
.section-title em { font-style: italic; color: var(--rose-mid); }
/* Manifest / o mnie */
.about {
background: linear-gradient(160deg, var(--sea-pale) 0%, var(--sky) 50%, var(--sand-light) 100%);
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 6rem;
align-items: center;
}
.about-portrait {
position: relative;
overflow: visible;
}
.portrait-frame {
width: 100%;
aspect-ratio: 3/4;
background: linear-gradient(145deg, var(--sand-mid), var(--rose-dust));
border-radius: 4px 60px 8px 50px;
overflow: hidden;
position: relative;
box-shadow: 8px 16px 40px rgba(78, 138, 131, 0.18), -4px 8px 20px rgba(176, 122, 116, 0.1);
}
.portrait-placeholder {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--rose-deep);
font-family: 'Cormorant Garamond', serif;
font-size: 0.9rem;
letter-spacing: 0.08em;
gap: 1rem;
text-align: center;
padding: 2rem;
}
.portrait-tag {
display: block;
margin-top: 1.2rem;
padding: 0.9rem 1.4rem;
background: var(--white-warm);
border-radius: 2px 16px 3px 14px;
box-shadow: 4px 8px 24px rgba(44, 58, 53, 0.1);
font-size: 0.78rem;
color: var(--ink-mid);
letter-spacing: 0.05em;
text-align: left;
}
.portrait-tag strong {
display: block;
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 400;
color: var(--rose-deep);
}
.about-content .section-title { margin-bottom: 1.8rem; }
.about-text {
font-size: 1.05rem;
line-height: 1.9;
color: var(--ink-mid);
font-weight: 300;
margin-bottom: 1.4rem;
}
.about-gifts {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
margin-top: 2rem;
}
.gift-tag {
padding: 0.4rem 1rem;
background: rgba(127, 179, 172, 0.15);
border: 1px solid rgba(127, 179, 172, 0.35);
border-radius: 50px;
font-size: 0.78rem;
color: var(--sea-deep);
letter-spacing: 0.06em;
transition: background 0.3s ease, transform 0.3s ease;
}
.gift-tag:hover {
background: rgba(127, 179, 172, 0.28);
transform: translateY(-2px);
}
/* Ścieżki — Oferta */
.paths { background: var(--white-warm); }
.paths-intro {
text-align: center;
max-width: 52ch;
margin: 0 auto 5rem;
}
.paths-intro .section-title { margin-bottom: 1rem; }
.paths-intro p {
color: var(--ink-mid);
font-size: 1rem;
line-height: 1.8;
font-weight: 300;
}
.paths-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
.path-card {
background: var(--sand-light);
border-radius: 4px 32px 6px 28px;
padding: 2.8rem 2.2rem;
position: relative;
overflow: hidden;
transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s ease;
cursor: pointer;
}
.path-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 3px;
border-radius: 4px 32px 0 0;
transition: height 0.4s ease;
}
.path-card.body::before { background: var(--rose-mid); }
.path-card.soul::before { background: var(--sea-mid); }
.path-card.art::before { background: var(--gold); }
.path-card:hover {
transform: translateY(-6px);
box-shadow: 4px 20px 48px rgba(44, 58, 53, 0.1);
}
.path-card:hover::before { height: 5px; }
.path-icon {
width: 52px; height: 52px;
margin-bottom: 1.6rem;
opacity: 0.85;
}
.path-label {
font-size: 0.68rem;
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 0.6rem;
}
.path-card.body .path-label { color: var(--rose-mid); }
.path-card.soul .path-label { color: var(--sea-deep); }
.path-card.art .path-label { color: var(--gold); }
.path-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.6rem;
font-weight: 400;
color: var(--ink);
margin-bottom: 1rem;
line-height: 1.2;
}
.path-desc {
font-size: 0.9rem;
line-height: 1.75;
color: var(--ink-mid);
font-weight: 300;
margin-bottom: 1.8rem;
}
.path-services {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.path-services li {
font-size: 0.82rem;
color: var(--ink-light);
display: flex;
align-items: center;
gap: 0.6rem;
}
.path-services li::before {
content: '—';
color: var(--rose-dust);
font-size: 0.7rem;
}
.path-card.soul .path-services li::before { color: var(--sea-pale); }
.path-card.art .path-services li::before { color: var(--sand-warm); }
/* Galeria */
.gallery { background: linear-gradient(180deg, var(--sand-light) 0%, var(--rose-dust) 30%, var(--sand-mid) 100%); }
.gallery-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 3.5rem;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 1.2rem;
}
.gallery-item {
border-radius: 3px 20px 4px 18px;
overflow: hidden;
background: var(--sand-mid);
position: relative;
cursor: pointer;
transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
aspect-ratio: 2/3;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) { aspect-ratio: 2/3; }
.gallery-placeholder {
width: 100%;
height: 100%;
min-height: 200px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.8rem;
font-size: 0.78rem;
color: var(--rose-deep);
letter-spacing: 0.08em;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
text-align: center;
padding: 1.5rem;
}
.gallery-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(44, 58, 53, 0.5) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.35s ease;
display: flex;
align-items: flex-end;
padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
font-family: 'Cormorant Garamond', serif;
color: var(--white-warm);
font-size: 1rem;
font-weight: 300;
letter-spacing: 0.05em;
}
/* Opinie */
.testimonials { background: var(--white-warm); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 1.8rem;
}
.testimonial-card {
padding: 2.4rem;
background: var(--sand-light);
border-radius: 3px 24px 4px 22px;
position: relative;
transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease;
}
.testimonial-card:hover {
transform: translateY(-4px);
box-shadow: 3px 16px 36px rgba(44, 58, 53, 0.08);
}
.testimonial-quote-mark {
font-family: 'Cormorant Garamond', serif;
font-size: 4rem;
line-height: 1;
color: var(--rose-dust);
margin-bottom: 1rem;
display: block;
}
.testimonial-text {
font-size: 0.95rem;
line-height: 1.8;
color: var(--ink-mid);
font-weight: 300;
font-style: italic;
margin-bottom: 1.5rem;
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
}
.testimonial-author {
font-size: 0.75rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--sea-deep);
}
.testimonial-stars {
position: absolute;
top: 2rem; right: 2rem;
color: var(--gold);
font-size: 0.7rem;
letter-spacing: 0.1em;
}
/* FAQ */
.faq { background: linear-gradient(160deg, var(--sky) 0%, var(--sand-light) 100%); }
.faq-grid {
display: grid;
grid-template-columns: 1fr 1.6fr;
gap: 6rem;
align-items: start;
}
.faq-intro p {
font-size: 1rem;
line-height: 1.8;
color: var(--ink-mid);
font-weight: 300;
margin-top: 1.5rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
border-bottom: 1px solid rgba(127, 179, 172, 0.2);
overflow: hidden;
}
.faq-question {
width: 100%;
background: none;
border: none;
padding: 1.4rem 0;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-family: 'Cormorant Garamond', serif;
font-size: 1.15rem;
color: var(--ink);
text-align: left;
gap: 1rem;
transition: color 0.3s ease;
}
.faq-question:hover { color: var(--rose-deep); }
.faq-icon {
width: 22px; height: 22px;
border: 1px solid var(--sea-pale);
border-radius: 50%;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
color: var(--sea-mid);
transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.3s ease;
}
.faq-item.open .faq-icon {
transform: rotate(45deg);
background: var(--sea-pale);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
padding: 0 0 1.4rem;
font-size: 0.92rem;
line-height: 1.8;
color: var(--ink-mid);
font-weight: 300;
}
/* Rezerwacja / CTA */
.booking {
background: linear-gradient(145deg, var(--ink) 0%, #1a2822 100%);
color: var(--white-warm);
text-align: center;
overflow: hidden;
position: relative;
}
.booking-bg-ornament {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}
.booking .section-label { color: var(--sea-pale); }
.booking .section-title { color: var(--white-warm); margin-bottom: 1.5rem; }
.booking .section-title em { color: var(--rose-dust); }
.booking-subtitle {
font-size: 1rem;
line-height: 1.8;
color: rgba(247, 241, 232, 0.65);
max-width: 48ch;
margin: 0 auto 3.5rem;
font-weight: 300;
}
.booking-form-wrapper {
background: rgba(247, 241, 232, 0.06);
border: 1px solid rgba(194, 216, 210, 0.15);
border-radius: 4px 40px 6px 36px;
padding: 3rem;
max-width: 560px;
margin: 0 auto;
backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.form-group label {
font-size: 0.72rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(247, 241, 232, 0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
background: rgba(247, 241, 232, 0.07);
border: 1px solid rgba(194, 216, 210, 0.2);
border-radius: 2px 10px 2px 10px;
padding: 0.85rem 1.1rem;
color: var(--white-warm);
font-family: 'Jost', sans-serif;
font-size: 0.9rem;
font-weight: 300;
transition: border-color 0.3s ease, background 0.3s ease;
outline: none;
width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(247, 241, 232, 0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: rgba(127, 179, 172, 0.5);
background: rgba(247, 241, 232, 0.1);
}
.form-group select option { background: var(--ink); color: var(--white-warm); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
width: 100%;
background: var(--rose-mid);
color: var(--white-warm);
border: none;
padding: 1.1rem;
border-radius: 2px 16px 3px 14px;
font-family: 'Jost', sans-serif;
font-size: 0.82rem;
letter-spacing: 0.14em;
text-transform: uppercase;
cursor: pointer;
transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease, background 0.3s ease;
box-shadow: 0 6px 24px rgba(176, 122, 116, 0.35);
margin-top: 0.5rem;
}
.form-submit:hover {
transform: translateY(-3px);
box-shadow: 0 10px 32px rgba(176, 122, 116, 0.5);
background: var(--rose-deep);
}
.form-note {
font-size: 0.75rem;
color: rgba(247, 241, 232, 0.4);
margin-top: 1rem;
font-style: italic;
}
/* Footer */
footer {
background: var(--ink);
color: rgba(247, 241, 232, 0.6);
padding: 3.5rem 0 2rem;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 4rem;
padding-bottom: 2.5rem;
border-bottom: 1px solid rgba(194, 216, 210, 0.1);
margin-bottom: 2rem;
}
.footer-brand .nav-logo { color: var(--white-warm); font-size: 1.3rem; margin-bottom: 1rem; }
.footer-tagline {
font-size: 0.88rem;
line-height: 1.75;
font-weight: 300;
max-width: 28ch;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
}
.footer-col h4 {
font-size: 0.7rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(247, 241, 232, 0.4);
margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
font-size: 0.88rem;
color: rgba(247, 241, 232, 0.6);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--rose-dust); }
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.75rem;
color: rgba(247, 241, 232, 0.3);
}
.footer-location { display: flex; align-items: center; gap: 0.4rem; }
/* Animations */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(22px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
/* Reveal on scroll */
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
/* Mobile hamburger */
.nav-hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 4px;
}
.nav-hamburger span {
display: block;
width: 24px; height: 1px;
background: var(--ink);
transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
/* Mobile */
@media (max-width: 900px) {
nav { padding: 1.2rem 1.8rem; }
.nav-links { display: none; }
.nav-hamburger { display: flex; }

/* 1. Serce w dłoniach po enterze */
.nav-tagline { display: block; }

.hero { grid-template-columns: 1fr; min-height: auto; }
.hero-left { padding: 8rem 1.8rem 3rem; }
.hero-right { padding: 0 1.8rem 4rem; }
.hero-artwork { max-width: 280px; margin: 0 auto; }

/* 2. Zdjęcie w sekcji Manifest dopasowane do okienka */
.about-grid { grid-template-columns: 1fr; gap: 2rem; }
.about-portrait { width: 100%; }
.portrait-frame {
  aspect-ratio: 3/4;
  max-width: 100%;
  width: 100%;
}

/* 3. Portrait tag: Mirosława / Izabela Shine / Serce w dłoniach */
.portrait-tag {
  display: block;
  margin-top: 0.8rem;
  text-align: center;
}
.portrait-tag strong { display: block; }
.portrait-subtitle { display: block; }

/* 4. Galeria — jeden pod drugim, pełna szerokość */
.gallery-grid {
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.gallery-item { aspect-ratio: 2/3; width: 100%; }
.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 2/3; }

/* Strzałki lightbox na mobile */
.lightbox-prev { left: 0.3rem; }
.lightbox-next { right: 0.3rem; }
.lightbox-arrow { padding: 0.5rem; }
#lightboxImg { max-width: 88vw; max-height: 75vh; }

.paths-grid { grid-template-columns: 1fr; }
.testimonials-grid { grid-template-columns: 1fr; }
.faq-grid { grid-template-columns: 1fr; gap: 3rem; }
.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
.footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
.form-row { grid-template-columns: 1fr; }
.container, .container-narrow { padding: 0 1.8rem; }
section { padding: 5rem 0; }
.booking-form-wrapper { padding: 2rem 1.5rem; }
.gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
body { cursor: auto; }
.cursor, .cursor-ring { display: none; }
}
/* Success state */
.form-success {
display: none;
text-align: center;
padding: 2rem;
color: var(--sea-pale);
font-family: 'Cormorant Garamond', serif;
font-size: 1.4rem;
font-weight: 300;
font-style: italic;
}
/* Phone validation error */
.input-error {
border-color: var(--rose-deep) !important;
animation: shake 0.3s ease;
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-4px); }
75% { transform: translateX(4px); }
}
/* === Zdjęcie portretowe === */
.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* === Napis "Serce w dłoniach" === */
.portrait-subtitle {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--rose-mid);
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

/* === Zdjęcia w galerii === */
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-photo {
  transform: scale(1.04);
}

/* === Tagline pod logo w nav === */
.nav-tagline {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: #b8867e;
  letter-spacing: 0.04em;
  margin-top: 0.05rem;
  line-height: 1;
}

/* === Lightbox === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20, 26, 24, 0.92);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.lightbox.active {
  display: flex;
}
.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#lightboxImg {
  max-width: 92vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px 24px 4px 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: lightboxIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(247, 241, 232, 0.85);
  letter-spacing: 0.1em;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: 1px solid rgba(247, 241, 232, 0.3);
  color: var(--white-warm);
  font-size: 1.2rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 9001;
}
.lightbox-close:hover {
  background: rgba(247, 241, 232, 0.15);
  border-color: rgba(247, 241, 232, 0.6);
}
.gallery-item { cursor: zoom-in; }

/* === Lightbox strzałki i kropki === */
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(247, 241, 232, 0.4);
  cursor: pointer;
  padding: 1rem;
  z-index: 9002;
  transition: color 0.25s;
}
.lightbox-arrow:hover {
  color: rgba(247, 241, 232, 0.95);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.8rem;
}
.lightbox-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247, 241, 232, 0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.lightbox-dot.active {
  background: rgba(247, 241, 232, 0.9);
  transform: scale(1.4);
}
#lightboxImg {
  transition: opacity 0.18s ease;
}
