/* ==========================================================================
   Apartamenty Piaskowa Gniewino — styles
   Warm coastal one-pager. Fraunces (display) + Bricolage Grotesque (UI/body).
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
	--sand:        #f6efe1;   /* jasne piaskowe tło */
	--sand-deep:   #efe4cf;   /* głębsze piaskowe */
	--paper:       #fdfaf3;   /* prawie biel, ciepła */
	--ink:         #1c2b26;   /* ciemna morska zieleń-czerń */
	--ink-soft:    #2a3d36;
	--sea:         #2a7f6f;   /* morska zieleń */
	--sea-deep:    #1f6153;
	--blue:        #1d68a7;   /* błękit morski */
	--amber:       #e0a458;   /* ciepły akcent CTA */
	--amber-deep:  #cf8f3f;
	--muted:       #6f6a5d;   /* tekst drugorzędny */
	--line:        rgba(28,43,38,.14);

	--maxw: 1240px;
	--gutter: clamp(1.25rem, 4vw, 4rem);

	--font-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-sans: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;

	--ease: cubic-bezier(.22,.61,.36,1);
	--reveal-dur: .9s;

	--nav-h: 76px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
	font-family: var(--font-sans);
	font-size: clamp(1rem, .55vw + .9rem, 1.125rem);
	line-height: 1.6;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3 { line-height: 1.02; font-weight: 500; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--ink); color: var(--paper); }

.skip-link {
	position: fixed; top: -60px; left: 12px; z-index: 200;
	background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 6px;
	transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	height: var(--nav-h);
	display: flex; align-items: center;
	transition: background .4s var(--ease), box-shadow .4s var(--ease), height .3s var(--ease);
}
.nav__inner {
	width: 100%; max-width: var(--maxw); margin: 0 auto;
	padding-inline: var(--gutter);
	display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.nav__brand-mark {
	font-family: var(--font-display);
	font-size: 1.4rem; font-weight: 600; letter-spacing: .01em; color: var(--ink);
	transition: color .4s var(--ease);
}
.nav__brand-sub {
	font-size: .62rem; letter-spacing: .42em; text-transform: uppercase;
	color: var(--muted); margin-top: 3px; transition: color .4s var(--ease);
}
.nav__links { display: flex; gap: clamp(.5rem, 1.6vw, 2rem); }
.nav__links a {
	font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
	color: var(--ink-soft); padding: .5rem .1rem; position: relative;
	transition: color .3s;
}
.nav__links a::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
	background: var(--amber); transition: width .35s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--sea-deep); }
.nav__links a.is-active::after, .nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.lang { display: flex; align-items: center; gap: .3rem; }
.lang__btn {
	background: none; border: 0; cursor: pointer; font: inherit;
	font-size: .8rem; font-weight: 700; letter-spacing: .08em;
	color: var(--muted); padding: .2rem .1rem;
	transition: color .25s;
}
.lang__btn.is-active { color: var(--ink); }
.lang__btn:hover { color: var(--amber-deep); }
.lang__sep { color: var(--line); }

/* Nav scrolled state (light) */
.nav.is-scrolled {
	background: rgba(253,250,243,.92);
	backdrop-filter: saturate(140%) blur(10px);
	box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(28,43,38,.06);
	height: 66px;
}
.nav.is-scrolled .nav__brand-mark { color: var(--ink); }
.nav.is-scrolled .nav__brand-sub { color: var(--muted); }
.nav.is-scrolled .nav__links a { color: var(--ink-soft); }
.nav.is-scrolled .nav__links a:hover, .nav.is-scrolled .nav__links a.is-active { color: var(--sea-deep); }
.nav.is-scrolled .lang__btn { color: var(--muted); }
.nav.is-scrolled .lang__btn.is-active { color: var(--ink); }
.nav.is-scrolled .lang__sep { color: var(--line); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 34px; height: 26px; position: relative; }
.nav__burger span {
	position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px;
	transition: transform .35s var(--ease), opacity .25s;
}
.nav__burger span:nth-child(1){ top: 2px; }
.nav__burger span:nth-child(2){ top: 12px; }
.nav__burger span:nth-child(3){ top: 22px; }
.nav.is-open .nav__burger span:nth-child(1){ transform: translateY(10px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2){ opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3){ transform: translateY(-10px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
	display: inline-flex; align-items: center; gap: .6rem;
	font-family: var(--font-sans); font-weight: 700; font-size: .82rem;
	letter-spacing: .12em; text-transform: uppercase;
	padding: .85rem 1.5rem; border-radius: 999px; cursor: pointer; border: 0;
	transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
	white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn--lg { padding: 1.05rem 2rem; font-size: .9rem; }
.btn--book { background: var(--amber); color: #241a0a; }
.btn--book:hover { background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(207,143,63,.35); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--paper); border: 1px solid rgba(255,255,255,.4); }
.btn--outline:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn--outline-ink { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--outline-ink:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.nav__cta { padding: .6rem 1.25rem; font-size: .74rem; }

/* ==========================================================================
   HERO — editorial split (light panel + framed photo)
   ========================================================================== */
.hero {
	position: relative; min-height: 100svh; display: flex; align-items: center;
	overflow: hidden; color: var(--ink);
	padding: calc(var(--nav-h) + clamp(1.5rem, 4vw, 3.5rem)) 0 clamp(4rem, 7vw, 6rem);
	background:
		radial-gradient(90% 120% at 100% 0%, var(--sand-deep) 0%, transparent 55%),
		linear-gradient(180deg, var(--paper) 0%, var(--sand) 100%);
}
.hero__inner {
	display: grid; grid-template-columns: 1.02fr .98fr; align-items: center;
	gap: clamp(2rem, 5vw, 5rem);
}
.hero__content { position: relative; z-index: 2; min-width: 0; max-width: 34rem; }
.hero__eyebrow {
	display: inline-block; font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
	font-weight: 700; color: var(--sea); margin-bottom: 1.25rem;
}
.hero__title {
	font-family: var(--font-display); font-weight: 500;
	font-size: clamp(2.7rem, 7vw, 5.6rem); line-height: .96; letter-spacing: -.02em;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.hero__title .line { display: block; }
.hero__title .line:nth-child(2) { color: var(--sea-deep); padding-left: clamp(0px, 3vw, 2.5rem); }
.hero__lead {
	max-width: 32rem; font-size: clamp(1.02rem, 1.3vw, 1.22rem); line-height: 1.6;
	color: var(--muted);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: clamp(1.75rem, 3vw, 2.5rem); }
.hero__meta {
	display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: clamp(1.75rem, 3vw, 2.5rem);
	padding-top: clamp(1.25rem, 2.5vw, 1.75rem); border-top: 1px solid var(--line);
}
.hero__meta li {
	position: relative; padding-left: 1.4rem;
	font-size: .9rem; font-weight: 500; color: var(--ink-soft);
}
.hero__meta li::before {
	content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
}

/* Media / framed photo */
.hero__media { position: relative; z-index: 1; min-width: 0; }
.hero__frame {
	position: relative; border-radius: 26px; overflow: hidden;
	aspect-ratio: 4 / 5; box-shadow: 0 40px 80px -30px rgba(28,43,38,.5);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero__media::before {
	content: ""; position: absolute; z-index: -1; inset: auto -1.4rem -1.4rem auto;
	width: 60%; height: 60%; border-radius: 26px;
	background: linear-gradient(140deg, var(--sea) 0%, var(--sea-deep) 100%);
}
.hero__chip {
	position: absolute; left: -1rem; bottom: 1.75rem; z-index: 2;
	display: flex; align-items: center; gap: .75rem;
	background: rgba(253,250,243,.9); backdrop-filter: blur(8px);
	border: 1px solid var(--line); border-radius: 16px;
	padding: .8rem 1.1rem; box-shadow: 0 16px 40px rgba(28,43,38,.14);
}
.hero__chip svg { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--sea); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hero__chip span { display: flex; flex-direction: column; line-height: 1.15; }
.hero__chip strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.hero__chip em { font-style: normal; font-size: .8rem; color: var(--muted); }

/* ---- Hero rating badge (Booking.com 10/10) ---- */
.hero__rating {
	position: absolute; top: 1.25rem; right: -1rem; z-index: 3;
	display: flex; align-items: center; gap: .7rem;
	background: rgba(253,250,243,.92); backdrop-filter: blur(8px);
	border: 1px solid var(--line); border-radius: 16px;
	padding: .5rem .85rem .5rem .5rem;
	box-shadow: 0 16px 40px rgba(28,43,38,.18);
	text-decoration: none; color: var(--ink);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.hero__rating:hover, .hero__rating:focus-visible {
	transform: translateY(-3px); box-shadow: 0 22px 48px rgba(28,43,38,.24);
}
.hero__rating-score {
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; line-height: 1;
	color: #fff; border-radius: 12px; padding: .2rem .55rem 0.4rem;
	background: linear-gradient(140deg, #0a5ad6 0%, #003b95 100%);
}
.hero__rating-score em { font-style: normal; font-size: .72rem; font-weight: 600; opacity: .85; margin-left: 1px; }
.hero__rating-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero__rating-text strong { font-size: .95rem; font-weight: 600; color: #003b95; }
.hero__rating-sub { display: flex; align-items: center; gap: .28rem; font-size: .74rem; color: var(--muted); }
.hero__rating-sub svg { width: 13px; height: 13px; flex: none; fill: var(--amber); }

.hero__scroll {
	position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%); z-index: 2;
	display: flex; flex-direction: column; align-items: center; gap: .4rem;
	font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* ==========================================================================
   INTRO / STATS
   ========================================================================== */
.intro__grid {
	display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 5rem);
	align-items: start; margin-bottom: clamp(3rem, 7vw, 6rem);
}
.intro__title {
	font-family: var(--font-sans); font-weight: 800;
	font-size: clamp(1.9rem, 4.6vw, 4rem); line-height: 1.02; letter-spacing: -.015em;
	text-transform: uppercase;
}
.intro__title .accent { color: var(--sea); }
.intro__text { color: var(--muted); font-size: clamp(1rem, 1.1vw, 1.15rem); padding-top: .5rem; }

.stats {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem);
	border-top: 1px solid var(--line); padding-top: clamp(2rem, 4vw, 3rem);
}
.stat { display: flex; flex-direction: column; gap: .35rem; }
.stat__num {
	font-family: var(--font-display); font-weight: 500;
	font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1; color: var(--amber-deep);
	letter-spacing: -.02em;
}
.stat__label { color: var(--muted); font-size: .95rem; }

/* ==========================================================================
   SECTION HEADS
   ========================================================================== */
.section-head { max-width: 62rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.eyebrow {
	display: inline-block; font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
	font-weight: 700; color: var(--sea); margin-bottom: 1rem;
}
.section--dark .eyebrow { color: var(--amber); }
.section-title {
	font-family: var(--font-sans); font-weight: 800; text-transform: uppercase;
	font-size: clamp(1.8rem, 4.4vw, 3.6rem); line-height: 1.03; letter-spacing: -.015em;
}
.section-intro { margin-top: 1.25rem; color: var(--muted); max-width: 42rem; }

/* ==========================================================================
   OFERTA
   ========================================================================== */
.offer__layout {
	display: grid; grid-template-columns: 1.1fr 1fr;
	gap: clamp(1.25rem, 3vw, 2rem); align-items: stretch;
}
.apt {
	background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
	padding: clamp(1.75rem, 3vw, 2.75rem); position: relative; overflow: hidden;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.apt:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(28,43,38,.1); }
.apt--feature {
	display: flex; flex-direction: column; justify-content: center;
	background: var(--sea-deep); border-color: var(--sea-deep); color: var(--paper);
	padding: clamp(2rem, 4vw, 3.25rem);
}
.apt__index {
	font-family: var(--font-display); font-size: 2.4rem; color: var(--sea);
	display: block; margin-bottom: .5rem; opacity: .5;
}
.apt__tag {
	display: inline-block; align-self: flex-start; margin-bottom: 1rem;
	font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
	color: var(--paper); background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: .4rem .9rem;
}
.apt h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 600; margin-bottom: .75rem; }
.apt p { color: var(--muted); }
.apt--feature p { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.55; }

.amenities {
	display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr);
	gap: 1rem; margin: 0; height: 100%; list-style: none; padding: 0;
}
.amenity {
	display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .8rem;
	background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
	padding: 1.75rem 1rem; font-weight: 500; font-size: .95rem;
	transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.amenity:hover { transform: translateY(-4px); border-color: var(--sea); background: #fff; }
.amenity svg { width: 34px; height: 34px; fill: none; stroke: var(--sea); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.offer__outro {
	margin-top: clamp(2rem, 4vw, 3rem); font-family: var(--font-display);
	font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.4; max-width: 46rem;
}
.offer__outro strong { color: var(--sea-deep); font-weight: 600; }

/* ==========================================================================
   GALLERY GRID
   ========================================================================== */
.gallery__grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 12px; width: 100%; max-width: 1560px; margin: 0 auto; padding-inline: clamp(.75rem, 2vw, 2rem);
}
.gallery__grid--attractions { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.gallery__item {
	position: relative; overflow: hidden; border-radius: 12px; cursor: zoom-in;
	aspect-ratio: 4 / 3; background: var(--sand-deep);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(20,30,26,.4));
	opacity: 0; transition: opacity .4s;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

/* ---- Desktop: collapse to 2 rows + „pokaż więcej" ---- */
.gallery__item.is-hidden { display: none; }
.gallery__more-wrap {
	display: flex; justify-content: center;
	margin-top: 1.5rem; padding-inline: clamp(.75rem, 2vw, 2rem);
}
.gallery__more { cursor: pointer; }

/* ---- Mobile Booking-style mosaic (hidden on desktop) ---- */
.gallery__mosaic { display: none; }

/* ---- Mobile: full-screen photo sheet (lista zdjęć) ---- */
.gallery__sheet {
	position: fixed; inset: 0; z-index: 250; background: var(--paper);
	overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}
.gallery__sheet[hidden] { display: none; }
.sheet__bar {
	position: sticky; top: 0; z-index: 2; display: flex; align-items: center; gap: .35rem;
	background: var(--sea-deep); color: #fff; padding: .65rem 1rem; min-height: 56px;
	box-shadow: 0 4px 14px rgba(28,43,38,.18); cursor: pointer;
}
.sheet__back {
	display: flex; align-items: center; justify-content: center;
	background: none; border: 0; color: #fff; font-size: 2rem; line-height: 1;
	cursor: pointer; padding: 0 .4rem 0 0; position: relative; top: -.06em;
}
.sheet__title { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; line-height: 1; }
.sheet__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; }
.sheet__tile {
	position: relative; border: 0; padding: 0; margin: 0; cursor: zoom-in; min-width: 0;
	overflow: hidden; background: var(--sand-deep); aspect-ratio: 1 / 1;
}
.sheet__tile:nth-child(3n+1) { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.sheet__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 860px) {
	.gallery__grid { display: none; }
	.gallery__more-wrap { display: none !important; }
	.gallery__mosaic {
		display: grid; grid-template-columns: repeat(6, 1fr);
		grid-template-rows: 42vw 27vw; gap: 5px;
		padding-inline: clamp(.75rem, 3vw, 1.25rem);
	}
	.mosaic__tile {
		position: relative; border: 0; padding: 0; margin: 0; overflow: hidden; min-width: 0;
		border-radius: 10px; cursor: pointer; background: var(--sand-deep);
	}
	.mosaic__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
	.mosaic__tile:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
	.mosaic__tile:nth-child(2) { grid-column: 4 / 7; grid-row: 1; }
	.mosaic__tile:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
	.mosaic__tile:nth-child(4) { grid-column: 3 / 5; grid-row: 2; }
	.mosaic__tile:nth-child(5) { grid-column: 5 / 7; grid-row: 2; }
	.mosaic__more::after {
		content: attr(data-more); position: absolute; inset: 0;
		background: rgba(20,30,26,.55); color: #fff;
		display: grid; place-items: center;
		font-family: var(--font-sans); font-weight: 700; font-size: 1.5rem; letter-spacing: .02em;
	}
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location__frame {
	border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
	box-shadow: 0 20px 50px rgba(28,43,38,.08); line-height: 0;
}
.location__frame iframe { display: block; width: 100%; }
.location__link { text-align: center; margin-top: 1.5rem; }
.location__link a { color: var(--blue); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color .3s; }
.location__link a:hover { border-color: var(--blue); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact.section { padding-block: clamp(3rem, 6vw, 5rem); }
.contact__grid { display: flex; flex-direction: column; align-items: center; gap: clamp(1.75rem, 3vw, 2.5rem); max-width: 640px; margin: 0 auto; }
.contact__left { display: flex; flex-direction: column; align-items: center; text-align: center; }
.contact__left .eyebrow { margin-bottom: 1.5rem; }
.contact__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }
.contact__card { width: 100%; }
.contact__phones { display: flex; flex-wrap: wrap; gap: .4rem 1.75rem; }
.contact__card {
	background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
	border-radius: 20px; padding: clamp(1.75rem, 3.5vw, 2.75rem); backdrop-filter: blur(4px);
}
.contact__card h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 600; margin-bottom: 1.5rem; color: var(--amber); }
.contact__row { display: flex; flex-direction: column; padding: .8rem 0; border-top: 1px solid rgba(255,255,255,.14); line-height: 1.7; }
.contact__row:first-of-type { border-top: 0; padding-top: 0; }
.contact__label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: .3rem; }
.contact__card a:hover { color: var(--amber); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
	background: #16211d; color: rgba(255,255,255,.75);
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: clamp(3rem, 6vw, 5rem);
}
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__mark { font-family: var(--font-display); font-size: 1.6rem; color: #fff; display: block; margin-bottom: .75rem; }
.footer__brand p { max-width: 24rem; font-size: .95rem; }
.footer__nav { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav a, .footer__contact a, .footer__contact span { font-size: .92rem; transition: color .25s; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--amber); }
.footer__contact { display: flex; flex-direction: column; gap: .6rem; }
.footer__bottom {
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
	border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem;
	font-size: .78rem; color: rgba(255,255,255,.5);
}
.footer__seo { max-width: 40rem; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
	position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
	background: rgba(15,22,19,.94); padding: 4vw;
	opacity: 0; animation: lbIn .3s var(--ease) forwards;
}
.lightbox[hidden] { display: none; }
@keyframes lbIn { to { opacity: 1; } }
.lightbox__figure { max-width: 92vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.lightbox__figure img { max-width: 92vw; max-height: 80vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__figure figcaption { color: rgba(255,255,255,.65); font-size: .85rem; letter-spacing: .04em; }
.lightbox__close, .lightbox__nav {
	position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
	color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center;
	transition: background .25s, transform .25s;
}
.lightbox__close { top: 3vh; right: 3vw; width: 48px; height: 48px; font-size: 1.8rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 2rem; line-height: 1; }
.lightbox__nav--prev { left: 2vw; }
.lightbox__nav--next { right: 2vw; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--amber); color: #241a0a; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }

/* ==========================================================================
   FAB (mobile call)
   ========================================================================== */
.fab {
	position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
	width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center;
	background: var(--amber); color: #241a0a; box-shadow: 0 10px 30px rgba(207,143,63,.5);
	transition: transform .3s;
}
.fab svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fab:hover { transform: scale(1.06); }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal] {
	opacity: 0; transform: translateY(48px);
	transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}
[data-reveal][data-from="left"]  { transform: translateX(-70px); }
[data-reveal][data-from="right"] { transform: translateX(70px); }
[data-reveal][data-from="top"]   { transform: translateY(-60px); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.intro__grid { grid-template-columns: 1fr; }
	.footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	:root { --nav-h: 66px; }
	.nav__links {
		position: fixed; inset: var(--nav-h) 0 auto 0;
		flex-direction: column; align-items: center; gap: 0;
		background: rgba(253,250,243,.98); backdrop-filter: blur(12px);
		padding: 1rem 0 1.5rem; transform: translateY(-120%);
		transition: transform .45s var(--ease); box-shadow: 0 20px 40px rgba(28,43,38,.12);
	}
	.nav.is-open .nav__links { transform: translateY(0); }
	.nav__links a { color: var(--ink-soft); width: 100%; text-align: center; padding: .9rem; font-size: .95rem; }
	.nav__links a::after { display: none; }
	.nav__burger { display: block; }
	.nav__cta { display: none; }
	.offer__layout { grid-template-columns: 1fr; }
	.amenities { grid-template-rows: auto; height: auto; }
	.hero { min-height: 0; }
	.hero__inner { grid-template-columns: 1fr; gap: clamp(2.5rem, 8vw, 3.5rem); }
	.hero__content { max-width: 40rem; }
	.hero__title .line:nth-child(2) { padding-left: 0; }
	.hero__frame { aspect-ratio: 16 / 11; max-width: 640px; }
	.hero__scroll { display: none; }
	.fab { display: grid; }
	.footer__inner { grid-template-columns: 1fr; gap: 2rem; }
	/* na wąskich ekranach poziomy „reveal" wystawał poza viewport i rozpychał stronę
	   — zostawiamy tylko ruch w pionie */
	[data-reveal][data-from="left"],
	[data-reveal][data-from="right"] { transform: translateY(48px); }
}
@media (max-width: 520px) {
	.stats { grid-template-columns: 1fr; text-align: left; gap: 1.75rem; }
	.amenities { grid-template-columns: 1fr; grid-template-rows: auto; }
	.btn--lg { width: 100%; justify-content: center; }
	.hero__cta { width: 100%; }
	.hero__media::before { inset: auto -.75rem -.75rem auto; }
	.hero__chip { left: .5rem; }
	.hero__rating { right: .5rem; top: .75rem; padding: .4rem .7rem .4rem .4rem; gap: .55rem; }
	.hero__rating-score { font-size: 1.2rem; padding: .35rem .45rem; }
	.hero__rating-text strong { font-size: .85rem; }
	.hero__rating-sub { font-size: .68rem; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	[data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
	.hero__scroll svg { animation: none; }
	* { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
