/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #2c2c2c;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── CSS Variables ─────────────────────────────────────────────── */
:root {
  --gold: #111111;
  --gold-light: #aaaaaa;
  --dark: #111;
  --grey: #f7f6f4;
  --text: #3a3a3a;
  --nav-h: 110px;
}

/* ─── Loader ────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; background: #fff; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo-img { height: 140px; margin: 0 auto 24px; object-fit: contain; }
.loader-bar { width: 120px; height: 1px; background: #e0e0e0; margin: 0 auto; overflow: hidden; }
.loader-progress { height: 100%; background: var(--gold); animation: load 1.6s ease forwards; }
@keyframes load { from { width: 0 } to { width: 100% } }

/* ─── Navigation ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; z-index: 1000;
  transition: background .4s, box-shadow .4s, height .4s ease;
}
nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 24px rgba(0,0,0,.07);
  height: 72px;
}
nav.scrolled .nav-logo-img { height: 52px; }

/* Logo */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 110px; object-fit: contain; transition: opacity .4s, height .4s ease; }
.nav-logo-white { opacity: 1; position: absolute; }
.nav-logo-dark  { opacity: 0; position: relative; }
nav.scrolled .nav-logo-white { opacity: 0; pointer-events: none; }
nav.scrolled .nav-logo-dark  { opacity: 1; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .68rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  transition: color .3s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
nav.scrolled .nav-links a { color: var(--text); }
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active { color: var(--gold); }

/* Nav CTA button */
.nav-links a.nav-cta {
  padding: .55rem 1.4rem; border: 1px solid rgba(255,255,255,.6);
  transition: all .3s; border-radius: 0;
}
.nav-links a.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
nav.scrolled .nav-links a.nav-cta { border-color: var(--gold); color: var(--gold); }
nav.scrolled .nav-links a.nav-cta:hover { background: var(--gold); color: #fff; }
nav.scrolled .nav-links a.nav-cta::after { display: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: #fff; transition: all .3s; }
nav.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: #fff; z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0; overflow-y: auto; padding: 5rem 2rem 3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.7rem; font-family: 'Cormorant Garamond', serif;
  font-weight: 400; letter-spacing: .06em; color: var(--dark);
  transition: color .3s; padding: .7rem 0; border-bottom: 1px solid #f0ede8;
  width: 100%; text-align: center;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a:active { color: #c9a96e; }
.mobile-menu-close {
  position: absolute; top: 1.4rem; right: 1.6rem;
  background: none; border: none; font-size: 1.8rem; cursor: pointer;
  color: var(--dark); line-height: 1; padding: .4rem;
  display: none;
}
.mobile-menu.open .mobile-menu-close { display: block; }

/* ─── Hero ──────────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,.48) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  padding: 0 2rem; max-width: 860px;
}
.hero-tag {
  display: inline-block; font-size: .65rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: #c9a96e; margin-bottom: 1.4rem;
  border-top: 1px solid rgba(201,169,110,.45);
  border-bottom: 1px solid rgba(201,169,110,.45);
  padding: .4rem 1.4rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 8vw, 7rem); font-weight: 300;
  line-height: 1.04; letter-spacing: .02em; margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; font-weight: 300; }
.hero-sub {
  font-size: .92rem; font-weight: 300; line-height: 1.9;
  letter-spacing: .06em; opacity: .88; margin-bottom: 2.8rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-block; padding: 1rem 2.8rem;
  background: var(--gold); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: #fff;
  transition: background .3s;
}
.btn-hero-primary:hover { background: #333; }
.btn-hero-outline {
  display: inline-block; padding: 1rem 2.8rem;
  border: 1px solid rgba(255,255,255,.7); font-size: .72rem;
  font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; transition: all .3s; backdrop-filter: blur(4px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 3.5rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6); font-size: .58rem;
  letter-spacing: .22em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px; background: rgba(255,255,255,.4);
  animation: scrollLine 2.2s infinite;
}
@keyframes scrollLine { 0%,100%{height:44px;opacity:.4} 50%{height:64px;opacity:.9} }

/* ─── Sections common ───────────────────────────────────────────── */
section { padding: 8rem 4rem; }
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-tag {
  display: inline-block; font-size: .62rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 400; color: var(--dark); line-height: 1.1; margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; font-weight: 300; }
.section-line { width: 44px; height: 1px; background: var(--gold); margin: 0 auto; }
.section-sub {
  max-width: 580px; margin: 1.4rem auto 0;
  font-size: .88rem; line-height: 2; color: #777;
}

/* ─── Strip ─────────────────────────────────────────────────────── */
.strip { display: flex; background: var(--dark); }
.strip-item {
  flex: 1; padding: 2.6rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .3s;
}
.strip-item:hover { background: rgba(255,255,255,.04); }
.strip-item:last-child { border-right: none; }
.strip-icon { font-size: 1.5rem; margin-bottom: .9rem; }
.strip-label {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: .4rem;
}
.strip-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: #fff; font-weight: 300;
}

/* ─── Pakiety & Oferty ──────────────────────────────────────────── */
#pakiety { background: var(--grey); }

/* Featured offer */
.offer-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1300px; margin: 0 auto 4rem;
  overflow: hidden; box-shadow: 0 12px 60px rgba(0,0,0,.1);
}
.offer-featured-img {
  position: relative; min-height: 520px;
}
.offer-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.offer-badge {
  position: absolute; top: 2rem; left: 2rem;
  background: var(--gold); color: #fff;
  font-size: .65rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; padding: .5rem 1.2rem;
}
.offer-featured-body {
  background: #fff; padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.offer-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem); font-weight: 400;
  color: var(--dark); line-height: 1.1; margin: .6rem 0 .4rem;
}
.offer-featured-sub {
  font-size: .75rem; letter-spacing: .1em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.4rem;
  font-weight: 600;
}
.offer-featured-body p {
  font-size: .88rem; line-height: 2; color: #666; margin-bottom: 1.6rem;
}
.offer-list { list-style: none; margin-bottom: 2rem; }
.offer-list li {
  display: flex; align-items: center; gap: .8rem;
  font-size: .82rem; color: #555; padding: .5rem 0;
  border-bottom: 1px solid #ece9e3;
}
.offer-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* Package cards */
.packages-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1300px; margin: 0 auto;
}
.pkg-card { background: #fff; overflow: hidden; transition: box-shadow .3s, transform .3s; }
.pkg-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,.12); transform: translateY(-4px); }
.pkg-img { position: relative; height: 220px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.07); }
.pkg-cat {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  color: #fff; font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 2rem 1rem .8rem;
}
.pkg-body { padding: 1.8rem; }
.pkg-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--dark); margin-bottom: .8rem;
  font-weight: 700; line-height: 1.2;
}
.pkg-body p { font-size: .8rem; line-height: 1.9; color: #888; margin-bottom: 1.2rem; }
.pkg-includes {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: .4rem; margin-bottom: 1.4rem;
}
.pkg-includes li {
  font-size: .62rem; font-weight: 500; letter-spacing: .06em;
  padding: .3rem .7rem; background: var(--grey); color: #666;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn-outline {
  display: inline-block; padding: .85rem 2rem;
  border: 1px solid var(--gold); font-size: .78rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); transition: all .3s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-solid {
  display: inline-block; padding: .95rem 2.6rem; background: var(--gold);
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; transition: background .3s;
}
.btn-solid:hover { background: #333; }

/* ─── About ─────────────────────────────────────────────────────── */
#o-nas { background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 560px; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -3rem; right: -3rem;
  width: 210px; height: 270px; object-fit: cover;
  border: 7px solid #fff; box-shadow: 0 12px 50px rgba(0,0,0,.14);
}
.about-text p { font-size: .9rem; line-height: 2.1; color: #666; margin-bottom: 1.5rem; }
.about-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1.2rem; }
.about-feature-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: var(--grey); display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
}
.about-feature-text strong {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .05em; color: var(--dark); margin-bottom: .25rem;
}
.about-feature-text span { font-size: .78rem; color: #999; line-height: 1.6; }

/* ─── Rooms ─────────────────────────────────────────────────────── */
#pokoje { background: var(--grey); }
.rooms-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1300px; margin: 0 auto;
}
.rooms-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}
.room-card { background: #fff; overflow: hidden; transition: box-shadow .3s, transform .3s; }
.room-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,.1); transform: translateY(-4px); }
.room-img { height: 230px; overflow: hidden; position: relative; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.room-card:hover .room-img img { transform: scale(1.07); }
.room-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  color: #fff; font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 2rem 1rem .8rem;
}
.room-body { padding: 1.8rem; }
.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; color: var(--dark); margin-bottom: .7rem;
  font-weight: 500;
}
.room-name em { font-style: italic; font-weight: 300; }
.room-desc { font-size: .8rem; line-height: 1.9; color: #888; margin-bottom: 1.2rem; }
.room-amenities { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
.room-tag {
  font-size: .6rem; font-weight: 500; letter-spacing: .06em;
  padding: .3rem .7rem; background: var(--grey); color: #666;
}

/* ─── SPA ───────────────────────────────────────────────────────── */
#spa { background: #fff; }
.spa-wrap { max-width: 1200px; margin: 0 auto; }
.spa-hero { position: relative; height: 500px; overflow: hidden; margin-bottom: 4rem; }
.spa-hero img { width: 100%; height: 100%; object-fit: cover; }
.spa-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.62) 0%, rgba(0,0,0,.08) 65%);
}
.spa-hero-text {
  position: absolute; left: 4.5rem; top: 50%; transform: translateY(-50%);
  z-index: 2; max-width: 440px;
}
.spa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.spa-card {
  padding: 2.6rem; border: 1px solid #ede9e2;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.spa-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 6px 30px rgba(184,154,106,.12);
  transform: translateY(-3px);
}
.spa-card-icon { font-size: 2rem; margin-bottom: 1.1rem; }
.spa-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--dark); margin-bottom: .8rem; font-weight: 500;
}
.spa-card p { font-size: .82rem; line-height: 2; color: #888; }

/* ─── Pool banner ───────────────────────────────────────────────── */
.pool-banner {
  background: var(--dark); padding: 6rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 4rem; flex-wrap: wrap;
}
.pool-banner-text { max-width: 580px; }
.pool-banner-text p { color: rgba(255,255,255,.58); font-size: .88rem; line-height: 2; }
.pool-badges { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.pool-badge { text-align: center; }
.pool-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; color: #fff; line-height: 1;
}
.pool-badge-lbl {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-top: .3rem;
}
.pool-banner-img {
  width: 460px; height: 300px; object-fit: cover; flex-shrink: 0;
}

/* ─── Restaurant ────────────────────────────────────────────────── */
#restauracja { background: var(--grey); }
.rest-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto;
}
.rest-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rest-imgs img { width: 100%; height: 240px; object-fit: cover; }
.rest-imgs img:first-child { grid-column: 1/-1; height: 300px; }
.rest-text p { font-size: .88rem; line-height: 2.1; color: #666; margin-bottom: 1.3rem; }
.rest-list { list-style: none; margin-bottom: 2rem; }
.rest-list li {
  display: flex; align-items: center; gap: .8rem;
  font-size: .84rem; color: #555; padding: .5rem 0;
  border-bottom: 1px solid #ece9e3;
}
.rest-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ─── Conferences ───────────────────────────────────────────────── */
#konferencje { background: #fff; }
.conf-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto;
}
.conf-text p { font-size: .88rem; line-height: 2.1; color: #666; margin-bottom: 1.3rem; }
.conf-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .9rem; margin-bottom: 2rem;
}
.conf-feat {
  display: flex; align-items: center; gap: .7rem;
  font-size: .8rem; color: #555; font-weight: 400;
}
.conf-feat::before {
  content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; font-size: .85rem;
}
.conf-img { position: relative; }
.conf-photos { display: flex; flex-direction: column; gap: .6rem; }
.conf-photo-main { width: 100%; height: 280px; object-fit: cover; }
.conf-photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.conf-photo-row img { width: 100%; height: 130px; object-fit: cover; }
.conf-capacity {
  position: absolute; bottom: -2rem; left: -2rem;
  background: var(--gold); color: #fff;
  padding: 1.6rem 2rem; text-align: center;
}
.conf-capacity-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; line-height: 1; display: block;
}
.conf-capacity-lbl {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  opacity: .85;
}

/* ─── Gallery ───────────────────────────────────────────────────── */
#galeria { background: var(--grey); }
.gallery-filters {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 3rem;
}
.filter-btn {
  padding: .6rem 1.6rem; font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600;
  border: 1px solid #ddd; background: #fff; cursor: pointer;
  transition: all .3s; font-family: 'Montserrat', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); border-color: var(--gold); color: #fff;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .8rem; max-width: 1300px; margin: 0 auto;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 1.8rem; font-weight: 300; }
.gallery-load-more { text-align: center; margin-top: 3rem; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 2000;
  display: none; align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 1.5rem; right: 2.5rem; color: rgba(255,255,255,.8);
  font-size: 2.2rem; cursor: pointer; background: none; border: none;
  line-height: 1; transition: color .2s;
}
.lb-close:hover { color: #fff; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 3rem; cursor: pointer; padding: 1rem; transition: color .2s;
}
.lb-prev:hover, .lb-next:hover { color: #fff; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ─── Contact ───────────────────────────────────────────────────── */
#kontakt { background: #fff; }
.contact-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1.4rem; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 50%;
  background: var(--grey); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
}
.contact-detail strong {
  display: block; font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; font-weight: 600;
}
.contact-detail span { font-size: .88rem; color: #555; line-height: 1.8; }
.map-wrap {
  width: 100%; height: 380px; background: var(--grey);
  overflow: hidden; margin-top: 2.5rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label {
  font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase; color: #999; font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  padding: .9rem 1rem; border: 1px solid #e8e5df;
  background: var(--grey); font-family: 'Montserrat', sans-serif;
  font-size: .84rem; color: var(--dark); outline: none;
  transition: border-color .3s; resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: #fff; }
.form-group textarea { height: 130px; }
.form-note { font-size: .7rem; color: #bbb; line-height: 1.8; }

/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  padding: 5rem 4rem 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3.5rem;
}
.footer-logo { height: 46px; object-fit: contain; margin-bottom: 1.4rem; filter: brightness(0) invert(1); opacity: .7; }
.footer-brand p { font-size: .8rem; line-height: 2; max-width: 240px; }
.socials { display: flex; gap: 1rem; margin-top: 1.8rem; }
.social-icon {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: .78rem;
  transition: all .3s; font-style: normal;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: 1.4rem; font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul a { font-size: .8rem; transition: color .3s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 2rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; flex-wrap: wrap; gap: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .3s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── Booking bar ───────────────────────────────────────────────── */
.booking-bar {
  position: fixed; bottom: 2.5rem; right: 2rem;
  z-index: 900; display: flex; flex-direction: column; align-items: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity .4s, transform .4s;
  transform: translateY(16px);
}
.booking-bar.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.booking-bar-toggle {
  display: flex; align-items: center; gap: .6rem;
  background: var(--dark); color: #fff; border: none; cursor: pointer;
  padding: .75rem 1.2rem; font-family: 'Montserrat', sans-serif;
  font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: background .3s;
}
.booking-bar-toggle:hover { background: #333; }
.booking-bar-toggle svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 1.8; flex-shrink: 0; }
.booking-bar-inner {
  display: none; flex-direction: column; gap: .9rem;
  background: #fff; box-shadow: 0 8px 40px rgba(0,0,0,.16);
  padding: 1.4rem 1.6rem 1rem; min-width: 240px; margin-bottom: 4px;
}
.booking-bar.expanded .booking-bar-inner { display: flex; }
.booking-bar-field { display: flex; flex-direction: column; gap: .25rem; }
.booking-bar-field label {
  font-size: .56rem; letter-spacing: .14em;
  text-transform: uppercase; color: #bbb; font-weight: 500;
}
.booking-bar-field input {
  border: none; border-bottom: 1px solid #e0e0e0; background: none;
  font-family: 'Montserrat', sans-serif; font-size: .82rem;
  color: var(--dark); padding: .3rem 0; outline: none; width: 100%;
  transition: border-color .3s;
}
.booking-bar-field input:focus { border-color: var(--gold); }
.booking-bar .btn-solid { text-align: center; padding: .75rem; font-size: .68rem; border: none; cursor: pointer; width: 100%; }

/* ─── Scroll-reveal ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — mobile-first comprehensive overhaul
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1200px ───────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
}

/* ── 1000px ───────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .offer-featured { grid-template-columns: 1fr; }
  .offer-featured-img { min-height: 320px; max-height: 400px; }
  .offer-featured-body { padding: 2.5rem; }
  .conf-grid { grid-template-columns: 1fr; gap: 3rem; }
  .conf-capacity { bottom: auto; left: auto; top: 1.5rem; right: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── 900px — tablet ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --nav-h: 72px; }

  section { padding: 5rem 1.8rem; }
  nav { padding: 0 1.6rem; height: var(--nav-h); }
  nav.scrolled { height: var(--nav-h); }
  .nav-logo-img { height: 52px; }
  nav.scrolled .nav-logo-img { height: 46px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Mobile menu touch targets */
  .mobile-menu a { font-size: 1.8rem; padding: .4rem 0; min-height: 56px; display: flex; align-items: center; }

  /* Hero */
  .hero-scroll { display: none; }
  .hero-sub { font-size: .82rem; }

  /* Strip — 2×3 grid */
  .strip { display: grid; grid-template-columns: 1fr 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 2rem 1.5rem; }
  .strip-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-main { height: 380px; }
  .about-img-accent { display: none; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid--3 { grid-template-columns: 1fr 1fr; max-width: 100%; }

  /* SPA hero — text at bottom, full overlay */
  .spa-hero { height: 380px; margin-bottom: 3rem; }
  .spa-hero::after {
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 60%);
  }
  .spa-hero-text {
    left: 0; right: 0; bottom: 0; top: auto; transform: none;
    padding: 2rem 2rem 1.8rem; max-width: 100%;
  }
  .spa-hero-text .section-title { font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: .6rem; }
  .spa-hero-text p { display: none; }
  .spa-hero-text .btn-solid { display: none; }
  .spa-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .spa-card { padding: 1.8rem; }

  /* Pool banner */
  .pool-banner { flex-direction: column; padding: 4rem 2rem; gap: 2.5rem; text-align: center; }
  .pool-banner-text { max-width: 100%; }
  .pool-banner-text .section-title { text-align: center; }
  .pool-banner-img { width: 100%; height: 240px; }
  .pool-badges { justify-content: center; }

  /* Restaurant */
  .rest-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rest-imgs img:first-child { height: 240px; }
  .rest-imgs img { height: 180px; }

  /* Conference */
  .conf-photo-main { height: 220px; }
  .conf-photo-row img { height: 110px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .map-wrap { height: 260px; }

  /* Footer */
  footer { padding: 3.5rem 1.8rem 2rem; }

  /* Booking bar — hide on mobile */
  .booking-bar { display: none; }
}

/* ── 600px — mobile ───────────────────────────────────────────────── */
@media (max-width: 600px) {
  section { padding: 4rem 1.2rem; }

  /* Hero */
  .hero-title { font-size: clamp(2.8rem, 11vw, 4rem); }
  .hero-sub { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; padding: 0 1rem; }
  .btn-hero-primary, .btn-hero-outline { text-align: center; padding: 1rem; }

  /* Strip — 1 column */
  .strip { grid-template-columns: 1fr 1fr; }
  .strip-item { padding: 1.6rem 1rem; }
  .strip-value { font-size: 1.2rem; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; gap: 1rem; }
  .offer-featured-img { min-height: 240px; }
  .offer-featured-body { padding: 1.8rem; }
  .offer-featured-title { font-size: 1.8rem; }

  /* About */
  .about-img-main { height: 280px; }

  /* Rooms */
  .rooms-grid, .rooms-grid--3 { grid-template-columns: 1fr; max-width: 100%; }
  .room-img { height: 200px; }

  /* SPA */
  .spa-hero { height: 300px; }
  .spa-grid { grid-template-columns: 1fr; gap: 1rem; }
  .spa-card { padding: 1.6rem; }

  /* Pool banner */
  .pool-banner { padding: 3rem 1.2rem; }
  .pool-badge-num { font-size: 2.4rem; }

  /* Restaurant */
  .rest-imgs { grid-template-columns: 1fr; }
  .rest-imgs img { height: 200px; }
  .rest-imgs img:first-child { grid-column: auto; height: 200px; }

  /* Conference */
  .conf-features { grid-template-columns: 1fr; gap: .6rem; }
  .conf-photo-row { grid-template-columns: 1fr 1fr; }
  .conf-photo-row img { height: 100px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
  .gallery-filters { gap: .5rem; }
  .filter-btn { padding: .5rem 1rem; font-size: .6rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .map-wrap { height: 220px; }
  .contact-icon { width: 38px; height: 38px; min-width: 38px; font-size: .9rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .6rem; }
  .footer-bottom div { flex-direction: column; gap: .4rem; }

  /* Lightbox — larger touch buttons */
  .lb-prev, .lb-next { font-size: 2.2rem; padding: 1.2rem .8rem; }
  .lb-close { font-size: 1.8rem; top: 1rem; right: 1.2rem; }
}

/* ── 400px — very small ───────────────────────────────────────────── */
@media (max-width: 400px) {
  :root { --nav-h: 64px; }

  section { padding: 3.5rem 1rem; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .section-title { font-size: clamp(2rem, 9vw, 2.8rem); }

  .strip { grid-template-columns: 1fr 1fr; }
  .strip-icon { font-size: 1.2rem; }

  .nav-logo-img { height: 42px; }
  nav.scrolled .nav-logo-img { height: 38px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .3rem; }
  .offer-featured-body { padding: 1.4rem; }
}
