/* =========================================================
   Szafirowa 7 — design system
   Jasny boutique / scandi: biel, grafit, jeden zielony akcent.
   ========================================================= */

:root {
  /* Surfaces */
  --bg:            #fbfbf9;
  --surface:       #ffffff;
  --soft:          #f4f3ef;
  --soft-2:        #edece6;

  /* Ink */
  --ink:           #15161a;
  --ink-2:         #4d5058;
  --ink-3:         #8b8d95;
  --line:          #e7e6e0;
  --line-strong:   #d6d5cd;

  /* Accent */
  --accent:        #1d6b52;
  --accent-dark:   #14503d;
  --accent-soft:   #e9f1ed;
  --warm:          #c2703f;
  --warm-soft:     #f8ede5;

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(20, 22, 26, .04), 0 2px 8px rgba(20, 22, 26, .04);
  --sh:    0 2px 6px rgba(20, 22, 26, .05), 0 12px 32px rgba(20, 22, 26, .07);
  --sh-lg: 0 4px 12px rgba(20, 22, 26, .06), 0 24px 64px rgba(20, 22, 26, .12);

  /* Layout */
  --max:      1200px;
  --max-wide: 1520px;
  --nav-h:    72px;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
body.lock { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
  font-variation-settings: 'opsz' 60;
}

h1 { font-size: clamp(40px, 6.4vw, 82px); font-weight: 500; line-height: 1.04; letter-spacing: -0.02em; font-variation-settings: 'opsz' 144; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.08; font-variation-settings: 'opsz' 110; }
h3 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.01em; }
h4 { font-size: 18px; letter-spacing: -0.005em; line-height: 1.3; }

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ''; width: 18px; height: 1.5px;
  background: currentColor; border-radius: 2px;
}
.eyebrow.center::before { display: none; }

.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--ink-2);
}

.muted { color: var(--ink-3); }

/* ---------- Layout ---------- */
.container      { width: 100%; max-width: var(--max);      margin-inline: auto; padding-inline: 24px; }
.container-wide { width: 100%; max-width: var(--max-wide); margin-inline: auto; padding-inline: 24px; }

section { padding: clamp(64px, 8vw, 118px) 0; }
.section-soft { background: var(--soft); }
.section-ink  { background: var(--ink); color: #fff; }
.section-tight { padding-block: clamp(48px, 5vw, 72px); }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 4vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head p  { margin-top: 18px; font-size: 17px; line-height: 1.7; color: var(--ink-2); }

.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head-row .section-head { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .18s var(--ease),
              box-shadow .22s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(29, 107, 82, .24); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 10px 28px rgba(29, 107, 82, .3); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2c2e35; }

.btn-light { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.btn-light:hover { background: #fff; box-shadow: var(--sh); }

.btn-outline { border: 1.5px solid var(--line-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn-glass {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, .95); color: var(--ink); border-color: transparent; }

.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

.btn .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--accent);
  padding-bottom: 2px;
  box-shadow: inset 0 -1px 0 rgba(29, 107, 82, .3);
  transition: box-shadow .22s var(--ease), gap .22s var(--ease);
}
.link-arrow:hover { box-shadow: inset 0 -1px 0 var(--accent); gap: 12px; }
.link-arrow svg { width: 15px; height: 15px; }

/* Small pill / tag */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-size: 12.5px; font-weight: 600; letter-spacing: -0.005em;
  white-space: nowrap;
}
.tag-neutral { background: var(--soft-2); color: var(--ink-2); }
.tag-warm    { background: var(--warm-soft); color: #96522c; }
.tag-glass {
  background: rgba(255, 255, 255, .16); color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(251, 251, 249, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  opacity: 0; transition: opacity .3s var(--ease);
}
.nav.scrolled::before { opacity: 1; }

.nav-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800; letter-spacing: -0.04em;
  flex: none;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.brand-sub {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin-top: -3px;
  transition: color .3s var(--ease);
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 9px 14px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(20, 22, 26, .05); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-links a[aria-current="page"]::after {
  content: ''; position: absolute; left: 50%; bottom: 2px;
  transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  padding: 9px 12px; border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-phone:hover { color: var(--ink); background: rgba(20, 22, 26, .05); }
.nav-phone svg { width: 16px; height: 16px; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em;
  transition: background .22s var(--ease), color .22s var(--ease), transform .18s var(--ease);
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* Over-hero (transparent, light content) */
.nav.over-hero:not(.scrolled) .brand,
.nav.over-hero:not(.scrolled) .nav-links a,
.nav.over-hero:not(.scrolled) .nav-phone { color: #fff; }
.nav.over-hero:not(.scrolled) .brand-sub { color: rgba(255, 255, 255, .68); }
.nav.over-hero:not(.scrolled) .nav-links a:hover,
.nav.over-hero:not(.scrolled) .nav-phone:hover { background: rgba(255, 255, 255, .16); }
.nav.over-hero:not(.scrolled) .brand-mark { background: rgba(255, 255, 255, .95); color: var(--accent-dark); }
.nav.over-hero:not(.scrolled) .nav-cta { background: #fff; color: var(--ink); }
.nav.over-hero:not(.scrolled) .nav-cta:hover { background: var(--accent); color: #fff; }
.nav.over-hero:not(.scrolled) .nav-toggle { color: #fff; }

/* Mobile toggle */
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 999px;
  position: relative; color: var(--ink);
  transition: background .2s var(--ease);
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease), top .28s var(--ease), bottom .28s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Mobile panel */
.nav-panel {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 89;
  background: var(--bg);
  padding: 28px 24px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  overflow-y: auto;
}
.nav-panel.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.nav-panel a.np-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px;
  font-size: 22px; font-weight: 700; letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line);
}
.nav-panel a.np-link span { color: var(--ink-3); font-size: 15px; font-weight: 500; }
.nav-panel .np-foot { margin-top: 26px; display: grid; gap: 12px; }
.nav-panel .np-foot .btn { width: 100%; }

/* =========================================================
   HERO (home)
   Jedna kompozycja: zdjęcie, wyśrodkowana treść i pasek
   faktów wtopiony w dolną krawędź — bez nachodzących kart.
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #23261f;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
  transition: transform 1.8s var(--ease), opacity 1.1s var(--ease);
}
.js .hero-media img { transform: scale(1.06); opacity: 0; }
.hero.loaded .hero-media img { transform: scale(1); opacity: 1; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 13, 10, .58) 0%,
      rgba(10, 13, 10, .30) 30%,
      rgba(10, 13, 10, .42) 66%,
      rgba(10, 13, 10, .74) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  align-self: center;
  text-align: center;
  color: #fff;
  max-width: 880px;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: 24px;
}
.hero-place {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255, 255, 255, .74);
}
.hero-content h1 {
  color: #fff;
  margin-top: 22px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .3);
}
.hero-content h1 em { font-style: italic; color: #fff; }
.hero-sub {
  margin: 22px auto 0;
  max-width: 44ch;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .86);
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

/* Pasek faktów w dolnej krawędzi hero */
.hero-facts {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .2);
  background: rgba(10, 13, 10, .3);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  padding: 22px 0;
}
.hero-facts-row {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 24px;
}
.hf { display: flex; align-items: baseline; gap: 9px; color: #fff; white-space: nowrap; }
.hf b {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px); font-weight: 500;
  letter-spacing: -0.01em; line-height: 1;
}
.hf span { font-size: 13.5px; color: rgba(255, 255, 255, .72); }

/* Wejście treści */
.js .hero-content > * { opacity: 0; transform: translateY(18px); }
.hero.loaded .hero-content > * { animation: heroIn .9s var(--ease) forwards; }
.hero.loaded .hero-content > *:nth-child(1) { animation-delay: .15s; }
.hero.loaded .hero-content > *:nth-child(2) { animation-delay: .25s; }
.hero.loaded .hero-content > *:nth-child(3) { animation-delay: .35s; }
.hero.loaded .hero-content > *:nth-child(4) { animation-delay: .45s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* =========================================================
   SPLIT (image + copy)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-media { position: relative; }
.split-media img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
  border-radius: var(--r-lg);
}
.split-media.tall img { aspect-ratio: 4 / 4.6; }

.split-media .float-img {
  position: absolute; right: -28px; bottom: -34px;
  width: 44%; max-width: 230px;
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  border: 5px solid #fff;
  aspect-ratio: 3 / 3.6; object-fit: cover;
}

.split-copy h2 { margin-top: 16px; }
.split-copy p { margin-top: 20px; color: var(--ink-2); font-size: 16.5px; line-height: 1.75; }

.sig {
  margin-top: 28px; display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-3);
}
.sig-line { width: 28px; height: 1.5px; background: var(--line-strong); }

/* Mini feature list inside split */
.mini-list { margin-top: 30px; display: grid; gap: 14px; }
.mini-item { display: flex; gap: 13px; align-items: flex-start; }
.mini-ico {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.mini-ico svg { width: 17px; height: 17px; }
.mini-item strong { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.015em; }
.mini-item p { margin-top: 2px !important; font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.trust {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.trust:hover { border-color: transparent; transform: translateY(-3px); box-shadow: var(--sh); }
.trust-ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 16px;
}
.trust-ico svg { width: 20px; height: 20px; }
.trust h3 { font-size: 17px; letter-spacing: -0.02em; }
.trust p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--ink-3); }

/* =========================================================
   ROOM SCROLLER
   ========================================================= */
.scroller-head { display: flex; align-items: center; gap: 10px; }
.scroll-btn {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center; color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), opacity .2s;
}
.scroll-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.scroll-btn:disabled { opacity: .3; cursor: default; }
.scroll-btn:disabled:hover { background: none; color: var(--ink); border-color: var(--line-strong); }
.scroll-btn svg { width: 18px; height: 18px; }

.scroller {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 30%);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  margin-inline: calc(-1 * max(0px, (100vw - var(--max)) / 2));
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }

.room {
  scroll-snap-align: start;
  position: relative; display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--soft-2);
  cursor: pointer;
  isolation: isolate;
}
.room img {
  width: 100%; aspect-ratio: 3 / 3.9; object-fit: cover;
  transition: transform .7s var(--ease);
}
.room:hover img { transform: scale(1.05); }
.room::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 10, .74) 0%, rgba(10, 12, 10, .18) 45%, transparent 70%);
}
.room-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 22px 24px; color: #fff;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
}
.room-num {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}
.room-info h3 { color: #fff; font-size: 20px; margin-top: 6px; }
.room-zoom {
  width: 38px; height: 38px; border-radius: 999px; flex: none;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: center;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.room:hover .room-zoom { background: #fff; color: var(--ink); }
.room-zoom svg { width: 16px; height: 16px; }

/* =========================================================
   AMENITIES
   ========================================================= */
.amen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.amen {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 32px);
}
.amen-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.amen-ico {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--soft); color: var(--ink);
  display: grid; place-items: center;
}
.amen-ico svg { width: 19px; height: 19px; }
.amen h3 { font-size: 18px; }
.amen ul { display: grid; gap: 11px; }
.amen li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.8px; line-height: 1.5; color: var(--ink-2);
}
.amen li::before {
  content: ''; flex: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: .55;
  margin-top: 8px;
}
.amen-note {
  margin-top: 28px;
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--accent-soft);
  border-radius: var(--r);
  padding: 20px 24px;
  font-size: 15px; line-height: 1.65; color: var(--accent-dark);
}
.amen-note svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* =========================================================
   AREA / TEASER CARDS
   ========================================================= */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }

.area-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink);
  min-height: 340px;
  isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.area-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.area-card:hover img { transform: scale(1.06); }
.area-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(8, 12, 10, .88) 8%, rgba(8, 12, 10, .35) 55%, rgba(8, 12, 10, .1) 100%);
}
.area-body { margin-top: auto; padding: 24px; color: #fff; }
.area-body h3 { color: #fff; font-size: 21px; margin-top: 12px; }
.area-body p { margin-top: 9px; font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, .8); }
.area-more {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #fff;
}
.area-more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.area-card:hover .area-more svg { transform: translateX(4px); }

/* Plans (3 cards, light) */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 28px); }
.plan {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: transparent; }
.plan img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.plan-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.plan-body h3 { margin-top: 14px; font-size: 21px; }
.plan-meta { margin-top: 8px; font-size: 13.5px; font-weight: 500; color: var(--ink-3); }
.plan-body p { margin-top: 14px; font-size: 15px; line-height: 1.65; color: var(--ink-2); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.reviews-cta {
  max-width: 620px; margin-inline: auto; text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 44px);
  box-shadow: var(--sh-sm);
}
.rc-stars { color: #e0a12c; font-size: 22px; letter-spacing: 4px; }
.reviews-cta h3 { margin-top: 18px; font-size: clamp(21px, 2.4vw, 26px); }
.reviews-cta p {
  margin-top: 12px; font-size: 16px; line-height: 1.65;
  color: var(--ink-2); max-width: 42ch; margin-inline: auto;
}
.reviews-cta .btn { margin-top: 26px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
.faq-col { display: grid; gap: 12px; }
.faq-group-label {
  font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 4px;
}
.faq-group-label:not(:first-child) { margin-top: 22px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] { border-color: transparent; box-shadow: var(--sh); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 19px 56px 19px 22px;
  position: relative;
  font-size: 16px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; position: absolute; right: 22px; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg);
  transition: transform .28s var(--ease), border-color .2s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; border-color: var(--accent); }
.faq-item p { padding: 0 22px 22px; font-size: 15px; line-height: 1.7; color: var(--ink-2); }

/* =========================================================
   BOOKING
   ========================================================= */
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 64px); align-items: start;
}

.price-card {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
}
.price-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.price-card-body { padding: 26px; }
.price-head h3 { font-size: 20px; letter-spacing: -0.03em; }
.price-head p { margin-top: 6px; font-size: 14.5px; color: var(--ink-3); }
.price-cta {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--accent);
  transition: gap .22s var(--ease);
}
.price-cta:hover { gap: 12px; text-decoration: underline; }
.price-cta svg { width: 14px; height: 14px; flex: none; }
.price-list { margin-top: 22px; display: grid; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.price-list svg { width: 17px; height: 17px; flex: none; color: var(--accent); margin-top: 3px; }

/* Kontakt bezpośredni (zamiast formularza rezerwacji) */
.cmethods { display: grid; gap: 12px; margin-top: 32px; }
.cmethod {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cmethod:hover { border-color: transparent; transform: translateY(-2px); box-shadow: var(--sh); }
.cmethod-ico {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.cmethod-ico svg { width: 21px; height: 21px; }
.cmethod-txt { display: flex; flex-direction: column; min-width: 0; }
.cmethod-txt strong {
  font-size: 17px; font-weight: 700; letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}
.cmethod-txt span { font-size: 14px; color: var(--ink-3); margin-top: 2px; }
.cmethod-arw {
  width: 18px; height: 18px; flex: none; margin-left: auto; color: var(--ink-3);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.cmethod:hover .cmethod-arw { transform: translateX(4px); color: var(--accent); }

.ask-box {
  margin-top: 26px;
  background: var(--soft);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 30px);
}
.ask-box h3 { font-size: 17px; letter-spacing: -0.02em; }
.ask-box ul { margin-top: 16px; display: grid; gap: 10px; }
.ask-box li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; line-height: 1.55; color: var(--ink-2);
}
.ask-box li::before {
  content: ''; flex: none; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: .55; margin-top: 8px;
}
.ask-note {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px; line-height: 1.6; color: var(--ink-3);
}

/* Contact + map */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 44px); align-items: stretch; }
.map-col { display: flex; flex-direction: column; gap: 14px; }
.map-frame {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  flex: 1; min-height: 460px;
}
/* iframe Map Google przychodzi ze sztywnym width/height w atrybutach —
   CSS musi je nadpisać, inaczej wystaje poza kontener */
.map-frame iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.map-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.dist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dist {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px;
}
.dist .km { font-size: 22px; font-weight: 800; letter-spacing: -0.035em; }
.dist .place { margin-top: 4px; font-size: 14px; color: var(--ink-3); line-height: 1.4; }

.contact-box {
  margin-top: 20px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-lg); padding: clamp(24px, 3vw, 32px);
}
.contact-box h3 { color: #fff; }
.contact-box .cline {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 15px;
}
.contact-box .cline:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-box .cline svg { width: 18px; height: 18px; color: rgba(255, 255, 255, .5); flex: none; }
.contact-box .cline span { color: rgba(255, 255, 255, .55); min-width: 62px; font-size: 13.5px; }
.contact-box .cline a, .contact-box .cline strong { font-weight: 600; }
.contact-box .cline a:hover { color: #fff; text-decoration: underline; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--ink);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 64px);
  color: #fff;
  display: grid; grid-template-columns: 1.4fr auto;
  gap: 32px; align-items: center;
}
.cta-band img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .34;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(12, 16, 14, .92) 20%, rgba(12, 16, 14, .55) 100%);
}
.cta-band > div { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { margin-top: 14px; font-size: 17px; line-height: 1.65; color: rgba(255, 255, 255, .82); max-width: 46ch; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   PAGE HERO (subpages)
   ========================================================= */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(56px, 7vw, 96px));
  padding-bottom: clamp(44px, 5vw, 72px);
  background: var(--soft);
  overflow: hidden;
}
.page-hero.on-image { background: #23261f; }
.page-hero.on-image .ph-media { position: absolute; inset: 0; }
.page-hero.on-image .ph-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.on-image .ph-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 11, .86), rgba(10, 14, 11, .5));
}
.page-hero.on-image .ph-inner { color: #fff; }
.page-hero.on-image h1 { color: #fff; }
.page-hero.on-image .ph-lead { color: rgba(255, 255, 255, .85); }
.page-hero.on-image .eyebrow { color: rgba(255, 255, 255, .9); }
.page-hero.on-image .crumbs, .page-hero.on-image .crumbs a { color: rgba(255, 255, 255, .7); }
.page-hero.on-image .crumbs a:hover { color: #fff; }

.ph-inner { position: relative; z-index: 2; max-width: 780px; }
.ph-inner h1 { font-size: clamp(34px, 5vw, 62px); margin-top: 16px; }
.ph-lead { margin-top: 20px; font-size: clamp(16.5px, 1.5vw, 19px); line-height: 1.7; color: var(--ink-2); max-width: 58ch; }
.ph-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-3); margin-bottom: 18px; }
.crumbs a { transition: color .2s; }
.crumbs a:hover { color: var(--ink); }
.crumbs svg { width: 13px; height: 13px; opacity: .5; }

/* Quick stats row on subpages */
.ph-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* =========================================================
   ATTRACTION LIST (subpages)
   ========================================================= */
.act-group { margin-bottom: clamp(36px, 4vw, 56px); }
.act-group:last-child { margin-bottom: 0; }
.act-group-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.act-group-head h3 { font-size: 21px; }
.act-group-head .count { margin-left: auto; font-size: 13.5px; color: var(--ink-3); }

.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot-easy   { background: #4a9a5e; }
.dot-medium { background: #d9a03a; }
.dot-hard   { background: #c0563a; }
.dot-blue   { background: #3a7bc0; }

.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.act-grid.two { grid-template-columns: repeat(2, 1fr); }

.act {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.4vw, 28px);
  display: flex; flex-direction: column;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.act:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: transparent; }
.act-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.act-head h4 { font-size: 18px; letter-spacing: -0.02em; }
.act-meta {
  margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px 14px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-3);
}
.act-meta span { display: inline-flex; align-items: center; gap: 6px; }
.act-meta svg { width: 14px; height: 14px; opacity: .7; }
.act p { margin-top: 14px; font-size: 15px; line-height: 1.65; color: var(--ink-2); }
.act-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }

.note-box {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--soft);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.5vw, 30px);
  font-size: 15.5px; line-height: 1.7; color: var(--ink-2);
  margin-top: clamp(28px, 3vw, 40px);
}
.note-box svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 2px; }
.note-box strong { color: var(--ink); }

/* Season / info table */
.info-table {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--surface);
}
.info-row {
  display: grid; grid-template-columns: 190px 1fr;
  gap: 20px; padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.info-row:last-child { border-bottom: 0; }
.info-row dt { font-weight: 700; letter-spacing: -0.015em; }
.info-row dd { color: var(--ink-2); line-height: 1.6; }

/* Next/prev subpage nav */
.page-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
.page-nav a {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 26px; background: var(--surface);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.page-nav a:hover { border-color: transparent; transform: translateY(-2px); box-shadow: var(--sh); }
.page-nav .pn-dir { font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.page-nav .pn-title { margin-top: 6px; font-size: 19px; font-weight: 700; letter-spacing: -0.025em; }
.page-nav a.next { text-align: right; }

/* =========================================================
   FOOD (jedzenie subpage)
   ========================================================= */
.food-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 22px); }
.food-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 2.4vw, 28px);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.food-item:hover { border-color: transparent; box-shadow: var(--sh); }
.food-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.food-item h4 { font-size: 18px; }
.food-item .kind { margin-top: 8px; font-size: 13.5px; color: var(--ink-3); font-weight: 500; }
.food-item p { margin-top: 12px; font-size: 15px; line-height: 1.65; color: var(--ink-2); }
.food-map {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--accent);
  transition: gap .22s var(--ease);
}
.food-map:hover { gap: 11px; text-decoration: underline; }
.food-map svg { width: 13px; height: 13px; }

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gal-toolbar {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: rgba(251, 251, 249, .9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.gal-toolbar-inner { display: flex; align-items: center; gap: 16px; justify-content: space-between; }

.filters {
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 2px;
}
.filters::-webkit-scrollbar { display: none; }
.filter {
  padding: 9px 17px; border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.filter:hover { border-color: var(--line-strong); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter .n { opacity: .5; margin-left: 5px; font-weight: 500; }

.gal-count { font-size: 14px; color: var(--ink-3); white-space: nowrap; }

.masonry {
  column-count: 4; column-gap: 16px;
  padding-block: clamp(28px, 4vw, 48px);
}
.gal-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--r); overflow: hidden;
  background: var(--soft-2);
  cursor: zoom-in; position: relative;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gal-item img {
  width: 100%; height: auto; display: block;
  opacity: 0; transition: opacity .6s var(--ease), transform .7s var(--ease);
}
.gal-item img.loaded { opacity: 1; }
.gal-item:hover img { transform: scale(1.04); }
.gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 10, .35), transparent 45%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.gal-item:hover::after { opacity: 1; }
.gal-cap {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  color: #fff; font-size: 13.5px; font-weight: 500;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
.gal-item.hidden { display: none; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12, 13, 12, .95);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  padding: 72px 24px 84px;
}
.lightbox.open { opacity: 1; visibility: visible; }
/* Wysokość musi być liczona od okna, nie procentem od pola siatki:
   przy auto-wysokości wiersza max-height:100% nic nie ogranicza
   i pionowe zdjęcia (1200x1800) wychodziły poza ekran. */
.lightbox img {
  max-width: min(1400px, 94vw);
  max-height: calc(100svh - 156px);   /* 72px padding góra + 84px dół */
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 6px;
}
@supports not (height: 100svh) {
  .lightbox img { max-height: calc(100vh - 156px); }
}
.lb-btn {
  position: absolute; z-index: 3;
  width: 48px; height: 48px; border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff; display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.lb-btn:hover { background: rgba(255, 255, 255, .22); }
/* [hidden] musi wygrać z display:grid powyżej */
.lb-btn[hidden] { display: none; }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-cap {
  position: absolute; left: 0; right: 0; bottom: 26px;
  text-align: center; color: rgba(255, 255, 255, .78);
  font-size: 14px; padding-inline: 24px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: #fff; padding: clamp(56px, 6vw, 84px) 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.footer .brand { color: #fff; }
.footer .brand-sub { color: rgba(255, 255, 255, .5); }
.footer-about {
  margin-top: 20px; font-size: 15px; line-height: 1.7;
  color: rgba(255, 255, 255, .62); max-width: 38ch;
}
.footer-social { margin-top: 22px; display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .75);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.footer-social a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.footer-social svg { width: 17px; height: 17px; }

.footer h4 {
  font-size: 12.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255, 255, 255, .45); margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block; padding: 6px 0;
  font-size: 15px; color: rgba(255, 255, 255, .78);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255, 255, 255, .45);
}

/* =========================================================
   MOBILE BOOKING BAR
   ========================================================= */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.mbar.show { transform: none; }
.mbar-price b { font-size: 18px; font-weight: 800; letter-spacing: -0.035em; }
.mbar-price span { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: -2px; }

/* =========================================================
   REVEAL
   ========================================================= */
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.visible {
  opacity: 1; transform: none;
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.rd-1.visible { transition-delay: .08s; }
.rd-2.visible { transition-delay: .16s; }
.rd-3.visible { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero-content > * { opacity: 1; transform: none; }
  .js .hero-media img { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .masonry { column-count: 3; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 1000px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
  .act-grid, .act-grid.two { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-media .float-img { width: 38%; right: -12px; bottom: -22px; }
  .cta-band { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .scroller { grid-auto-columns: minmax(260px, 62%); margin-inline: -24px; padding-inline: 24px; }
}

@media (max-width: 780px) {
  :root { --nav-h: 64px; }
  .masonry { column-count: 2; column-gap: 12px; }
  .gal-item { margin-bottom: 12px; }
  .area-grid { grid-template-columns: 1fr; }
  .area-card { min-height: 300px; }
  .amen-grid { grid-template-columns: 1fr; }
  .act-grid, .act-grid.two, .food-grid { grid-template-columns: 1fr; }
  .dist-grid { grid-template-columns: 1fr 1fr; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:last-child { grid-column: auto; }
  .page-nav { grid-template-columns: 1fr; }
  .page-nav a.next { text-align: left; }
  .mbar { display: flex; }
  body { padding-bottom: 0; }
  .lightbox { padding: 60px 12px 70px; }
  .lightbox img { max-width: 96vw; max-height: calc(100svh - 130px); }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 42px; height: 42px; }
  .hero { min-height: 92svh; }
  .hero-facts-row { overflow-x: auto; justify-content: flex-start; gap: 28px; scrollbar-width: none; }
  .hero-facts-row::-webkit-scrollbar { display: none; }
  .hero-facts { padding: 18px 0; }
  .cta-band { border-radius: var(--r-lg); }
  .gal-count { display: none; }
}

@media (max-width: 480px) {
  .container, .container-wide { padding-inline: 18px; }
  .hero-ctas .btn { width: 100%; }
  .cmethod { padding: 16px 18px; gap: 13px; }
  .cmethod-txt strong { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
}
