/* ============================================
   Privát Hudec — Landing Page
   Design system port from prototype
   ============================================ */

* { box-sizing: border-box; }

:root {
  /* PALETTE D — Cream + Navy + Gold */
  --blue: #0E2949;          /* primary accent = navy (was bright blue) */
  --blue-dark: #1a3a60;
  --blue-darker: #051a31;
  --navy: #0E2949;
  --navy-soft: #15355C;
  --gold: #b8946a;          /* warm tan accent for prices, eyebrows, signature */
  --gold-soft: #d4b58a;
  --cream: #f5efe4;
  --cream-2: #ebe2d2;       /* deeper cream for attractions/gallery bands */
  --bg: #f5efe4;
  --card: #ffffff;
  --ink: #0E2949;
  --ink-2: #3a4659;
  --ink-3: #7a8395;
  --line: #e0d9c8;
  --line-2: #ece5d5;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow-md: 0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 20px 48px rgba(15,23,42,.14), 0 8px 16px rgba(15,23,42,.08);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --green: #14b87a;
  --teal: #2AABEE;
  --wa: #25D366;
}

/* ============ BASE ============ */
/* The7 theme sets serif font stacks on body and content elements with
   high specificity — force Manrope across the landing tree. */
html body.phb-landing,
body.phb-landing p,
body.phb-landing h1, body.phb-landing h2, body.phb-landing h3,
body.phb-landing h4, body.phb-landing h5, body.phb-landing h6,
body.phb-landing a, body.phb-landing span, body.phb-landing li,
body.phb-landing div, body.phb-landing label,
body.phb-landing button, body.phb-landing input,
body.phb-landing textarea, body.phb-landing select {
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif !important;
}
/* Decorative exceptions */
body.phb-landing .phb-signature,
body.phb-landing .phb-hero h1 em {
  font-family: 'Caveat', cursive !important;
}
body.phb-landing .phb-room-card-l .img .ph,
body.phb-landing .phb-gallery .g .ph {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
}

.phb-landing {
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
.phb-landing img { max-width: 100%; display: block; }
.phb-landing button { font-family: inherit; cursor: pointer; }
.phb-landing a { color: inherit; }

/* ============ NAV ============ */
.phb-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: var(--cream);
  border-bottom: 1px solid rgba(14,41,73,.06);
  transition: background .25s, box-shadow .25s, padding .25s, border-color .25s;
}
.phb-nav.scrolled {
  background: rgba(245,239,228,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(14,41,73,.06);
  border-bottom-color: var(--line);
  padding: 10px 28px;
}
.phb-nav .phb-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 16px; letter-spacing: .06em;
  color: var(--navy); text-decoration: none;
}
.phb-nav .phb-logo svg { width: 28px; height: 28px; color: var(--gold); }
.phb-nav .phb-nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
}
.phb-nav .phb-nav-links a { text-decoration: none; transition: color .15s; }
.phb-nav .phb-nav-links a:hover { color: var(--gold); }
.phb-nav .phb-lang {
  display: flex; gap: 4px; padding: 4px 10px;
  border: 1px solid rgba(14,41,73,.18);
  border-radius: 999px; font-size: 12px;
  text-transform: uppercase; letter-spacing: .08em;
}
.phb-nav .phb-lang span,
.phb-nav .phb-lang a { padding: 2px 6px; border-radius: 999px; cursor: pointer; text-decoration: none; color: inherit; transition: background .15s, color .15s; }
.phb-nav .phb-lang span.on,
.phb-nav .phb-lang a.active { background: var(--navy); color: #fff; }
.phb-nav .phb-burger { display: none; }

@media (max-width: 880px) {
  .phb-nav { padding: 12px 18px; }
  .phb-nav.scrolled { padding: 10px 18px; }
  .phb-nav .phb-nav-links { display: none; }
  .phb-nav .phb-lang { display: none; }
  .phb-nav .phb-burger {
    display: flex; flex-direction: column; gap: 4px;
    background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
    border: 0; padding: 10px; border-radius: 8px;
  }
  .phb-nav.scrolled .phb-burger { background: var(--bg); }
  .phb-nav .phb-burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; display: block; }
  .phb-nav.scrolled .phb-burger span { background: var(--navy); }
}

/* drawer */
.phb-drawer-bg {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(15,41,73,.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.phb-drawer-bg.open { opacity: 1; pointer-events: auto; }
.phb-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 71;
  width: min(320px, 86vw);
  background: #fff;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.32,.72,.4,1);
  padding: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.phb-drawer.open { transform: translateX(0); }
.phb-drawer .phb-drawer-close {
  align-self: flex-end; background: var(--line-2); border: 0;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px; color: var(--ink-2);
  margin-bottom: 12px;
}
.phb-drawer a {
  text-decoration: none; padding: 14px 4px;
  font-size: 17px; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--line-2); display: block;
}

/* Mobile language switcher — Variant A (segmented control)
   Sits below the nav items in the drawer. 2-letter codes, active segment
   fills navy. */
.phb-drawer .phb-drawer-lang-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
  margin: 22px 0 0;
  padding: 0;
}
.phb-drawer .phb-drawer-lang.phb-lang-seg {
  display: flex; gap: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px;
  margin-top: 10px;
}
/* Override the default .phb-drawer a styling for segmented buttons */
.phb-drawer .phb-lang-seg .phb-lang-seg__btn {
  flex: 1; padding: 9px 0;
  background: transparent;
  border: 0; border-radius: 7px;
  font-family: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background .15s, color .15s, box-shadow .15s;
}
.phb-drawer .phb-lang-seg .phb-lang-seg__btn:hover {
  color: var(--navy);
}
.phb-drawer .phb-lang-seg .phb-lang-seg__btn.on {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 4px rgba(14, 41, 73, 0.18);
}
.phb-drawer .phb-lang-seg .phb-lang-seg__btn.on:hover { color: #fff; }

/* ============ HERO ============ */
.phb-hero {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--navy);
  padding: 110px 32px 36px;
  overflow: hidden;
}
.phb-hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 40px;
  align-items: center;
}
.phb-hero-inner::before {
  /* Warm gold accent glow — anchored to the inner (1200px) container so it
     always sits behind the Booking rating card regardless of viewport width.
     z-index:-1 places it behind sibling content inside this stacking context
     (.phb-hero-inner has position:relative + z-index:2). */
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 32vw, 420px);
  height: clamp(280px, 32vw, 420px);
  background:
    radial-gradient(circle at 30% 70%, rgba(184,148,106,.22) 0%, transparent 55%),
    radial-gradient(circle at 70% 50%, rgba(14,41,73,.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.phb-hero-lede { display: flex; flex-direction: column; gap: 14px; }
.phb-hero .phb-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(14,41,73,.6);
  align-self: flex-start;
}
.phb-hero .phb-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #3aa86b;
  animation: phb-pulse 2s ease-in-out infinite;
}
.phb-hero h1 {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 700; line-height: 1.05; letter-spacing: -.02em;
  margin: 0; max-width: 18ch;
  color: var(--navy);
}
.phb-hero h1 em {
  font-style: italic; font-weight: 500; color: var(--gold);
  font-family: 'Caveat', cursive; font-size: 1em;
}
.phb-hero .phb-hero-sub {
  font-size: 15px; line-height: 1.6;
  color: rgba(14,41,73,.72);
  max-width: 50ch; margin: 0;
}
.phb-hero-quick-facts {
  display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 4px;
  font-size: 13px; color: rgba(14,41,73,.72);
}
.phb-hero-quick-facts .qf { display: flex; align-items: center; gap: 8px; }
.phb-hero-quick-facts .qf svg { width: 16px; height: 16px; stroke: rgba(14,41,73,.55); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.phb-hero-quick-facts .qf b { color: var(--navy); font-weight: 700; }
.phb-hero-rating {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 22px 28px;
  background: rgba(14,41,73,.05);
  border: 1px solid rgba(14,41,73,.12);
  border-radius: var(--r-lg);
  min-width: 200px;
  color: var(--navy);
}
.phb-hero-rating .big { font-size: 42px; font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.phb-hero-rating .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.phb-hero-rating .src { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(14,41,73,.55); }

@media (max-width: 880px) {
  .phb-hero { padding: 90px 20px 30px; }
  .phb-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  /* Hero glow follows the booking card; on the stacked mobile layout the
     card moves into the lede column, so the right-anchored glow no longer
     "highlights" anything — hide it to avoid an off-canvas blob. */
  .phb-hero-inner::before { display: none; }
  .phb-hero-rating { flex-direction: row; min-width: 0; padding: 14px 18px; gap: 14px; align-self: flex-start; }
  .phb-hero-rating .big { font-size: 28px; }
  .phb-hero-rating .col { display: flex; flex-direction: column; }
}


/* ============ SECTIONS ============ */
.phb-section {
  padding: 88px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 720px) { .phb-section { padding: 56px 20px; } }

.phb-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); text-align: center; margin: 0 0 14px;
}
.phb-eyebrow::before, .phb-eyebrow::after { content: '·'; margin: 0 14px; opacity: .5; }
h2.phb-section-title {
  text-align: center; font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; letter-spacing: -.02em;
  color: var(--navy); margin: 0 auto 14px; max-width: 22ch; line-height: 1.1;
}
.phb-section-sub {
  text-align: center; max-width: 56ch; margin: 0 auto 56px;
  color: var(--ink-2); font-size: 16px;
}

/* ============ ABOUT ============ */
.phb-about {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center;
}
.phb-about-img {
  aspect-ratio: 4/5; border-radius: var(--r-lg);
  background: var(--line); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.phb-about-img .ph {
  /* "No photo" state — warm gradient in brand palette with two initial
     avatars and a hand-written signature. Looks intentional, never empty. */
  position: absolute; inset: 0;
  display: grid; place-items: center;
  gap: 22px; grid-auto-flow: row;
  background:
    radial-gradient(circle at 28% 32%, rgba(184,148,106,.18) 0%, transparent 55%),
    radial-gradient(circle at 78% 78%, rgba(14,41,73,.10) 0%, transparent 55%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
}
.phb-about-img .phb-owners-avatars {
  display: flex; gap: -14px;
  position: relative;
}
.phb-about-img .phb-owners-avatars .av {
  width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 38px; font-weight: 700;
  letter-spacing: -0.02em;
  border: 4px solid var(--cream);
  box-shadow: 0 6px 18px rgba(14,41,73,.18);
}
.phb-about-img .phb-owners-avatars .av-a {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: #fff;
}
.phb-about-img .phb-owners-avatars .av-j {
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
  color: #fff;
  margin-left: -18px; /* slight overlap → "couple" feel */
}
.phb-about-img .phb-owners-sig {
  font-family: 'Caveat', cursive;
  font-size: 28px; color: var(--navy);
  opacity: .85; letter-spacing: 0;
}
.phb-about-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  /* Subtle warm tone-mapping so any photo blends with the cream palette */
  filter: saturate(1.02) contrast(1.02);
}
/* When a real photo is present, the badges sit above a soft bottom gradient
   so they stay legible regardless of the photo's tones. Z-indexing: photo
   z:0, gradient z:1, badges z:2. */
.phb-about-img.has-photo img { z-index: 0; }
.phb-about-img.has-photo::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(to bottom, transparent 0%, rgba(14,41,73,.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.phb-about-img .badge-yr,
.phb-about-img .badge-rate { z-index: 2; }
.phb-about-img .badge-yr {
  position: absolute; top: 20px; left: 20px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--navy);
}
.phb-about-img .badge-rate {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--navy); color: #fff;
  padding: 12px 16px; border-radius: var(--r-md);
  display: flex; align-items: center; gap: 10px;
}
.phb-about-img .badge-rate .num { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.phb-about-img .badge-rate .sub { font-size: 11px; opacity: .8; line-height: 1.3; }
.phb-about h2 { text-align: left; max-width: none; margin: 0 0 16px; }
.phb-about .phb-eyebrow { text-align: left; margin-left: 0; }
.phb-about .phb-eyebrow::before { display: none; }
.phb-about p { color: var(--ink-2); font-size: 16px; margin: 0 0 14px; line-height: 1.7; }
.phb-signature { font-family: 'Caveat', cursive; font-size: 32px; color: var(--navy); margin-top: 8px; }
.phb-about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 28px;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.phb-about-stats .s .n { font-size: 28px; font-weight: 700; color: var(--blue); letter-spacing: -.02em; }
.phb-about-stats .s .l { font-size: 12px; color: var(--ink-3); letter-spacing: .04em; }
@media (max-width: 880px) {
  .phb-about { grid-template-columns: 1fr; gap: 32px; }
  .phb-about-img { max-width: 420px; aspect-ratio: 4/3; }
}

/* ============ ROOMS ============ */
.phb-rooms-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.phb-room-card-l {
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--line-2);
}
.phb-room-card-l:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.phb-room-card-l .img {
  aspect-ratio: 4/3; position: relative; background: var(--line); overflow: hidden;
}
.phb-room-card-l .img .ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,.7);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(255,255,255,.08) 10px 11px),
    linear-gradient(135deg, #4a7eb8 0%, #2A6FDB 100%);
}
.phb-room-card-l .img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
/* Clickable image (room has photos) — affordance + zoom hover */
.phb-room-card-l .img.has-gallery { cursor: zoom-in; }
.phb-room-card-l .img.has-gallery:hover img { transform: scale(1.05); }
/* "N photos" badge bottom-right of card image */
.phb-room-card-l .phb-img-count {
  position: absolute; bottom: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 9px; font-size: 12px; font-weight: 600;
  background: rgba(14,41,73,.72); color: #fff;
  border-radius: 999px; backdrop-filter: blur(4px);
  pointer-events: none;
}
.phb-room-card-l .phb-img-count svg { width: 13px; height: 13px; }
.phb-room-card-l .pill-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  color: var(--navy); text-transform: uppercase;
}
.phb-room-card-l .body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.phb-room-card-l h3 { margin: 0 0 6px; font-size: 19px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.phb-room-card-l .desc { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin: 0 0 16px; min-height: 42px; }
.phb-room-card-l .price { display: flex; align-items: baseline; gap: 8px; font-size: 13px; color: var(--ink-3); margin-bottom: 14px; }
.phb-room-card-l .price .amt { font-size: 26px; font-weight: 700; color: var(--gold); letter-spacing: -.02em; }
.phb-room-card-l .meta-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-top: 1px solid var(--line-2);
  font-size: 12px; color: var(--ink-2);
}
.phb-room-card-l .meta-row .amen { display: flex; gap: 6px; color: var(--ink-3); }
.phb-room-card-l .meta-row svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.phb-room-card-l .book-btn {
  margin-top: auto;
  background: var(--navy); color: #fff;
  border: 0; padding: 14px 16px; border-radius: var(--r-md);
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: background .15s, transform .1s; width: 100%;
}
.phb-room-card-l .book-btn:hover { background: var(--gold); color: #fff; }
.phb-room-card-l .book-btn:active { transform: scale(.98); }

/* ============ INFO CARDS ============ */
.phb-info-section { background: var(--bg); }
.phb-info-grid {
  display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.phb-info-card {
  background: var(--blue); color: #fff;
  border-radius: var(--r-lg); padding: 32px 28px; text-align: center;
  transition: transform .2s;
}
.phb-info-card:hover { transform: translateY(-3px); }
.phb-info-card.alt { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.phb-info-card.alt .icon { background: rgba(42,111,219,.08); color: var(--blue); }
.phb-info-card.alt h3 { color: var(--navy); }
.phb-info-card.alt .links a { color: var(--ink-2); border-bottom-color: var(--line-2); }
.phb-info-card.alt .links a:hover { color: var(--blue); }
.phb-info-card .icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: grid; place-items: center; margin: 0 auto 18px;
}
.phb-info-card .icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.phb-info-card h3 { margin: 0 0 16px; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.phb-info-card .links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; line-height: 1.5; }
.phb-info-card .links a {
  text-decoration: none; color: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(255,255,255,.2); padding: 4px 0;
  transition: color .15s, border-color .15s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.phb-info-card .links a:hover { color: #fff; border-color: rgba(255,255,255,.7); }
/* "Opens externally" hint — subtle, brightens on hover */
.phb-info-card .links a .ext {
  width: 11px; height: 11px; flex-shrink: 0;
  opacity: .55; transition: opacity .15s, transform .15s;
}
.phb-info-card .links a:hover .ext { opacity: 1; transform: translate(1px, -1px); }
.phb-info-card.alt .links a .ext { opacity: .4; }
.phb-info-card.alt .links a:hover .ext { opacity: .9; }

/* ============ WEATHER ============ */
.phb-weather-section { background: #fff; }
.phb-weather-wrap {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
  align-items: center;
  background: var(--blue); color: #fff;
  border-radius: var(--r-lg); padding: 36px; overflow: hidden;
}
.phb-weather-now { display: flex; flex-direction: column; gap: 20px; }
.phb-weather-now .head { display: flex; justify-content: space-between; align-items: center; font-size: 13px; opacity: .85; }
.phb-weather-now .head .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #5fe6a0;
  display: inline-block; margin-right: 6px; animation: phb-pulse 2s ease-in-out infinite;
}
.phb-weather-now .temp { display: flex; align-items: center; gap: 18px; }
.phb-weather-now .temp .icon {
  width: 64px; height: 64px; display: grid; place-items: center;
  background: rgba(255,255,255,.12); border-radius: 16px;
}
.phb-weather-now .temp .icon svg { width: 38px; height: 38px; }
.phb-weather-now .temp .deg { font-size: 56px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.phb-weather-now .temp .cond { font-size: 14px; opacity: .85; }
.phb-weather-now .grid-data {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px;
  font-size: 13px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15);
}
.phb-weather-now .grid-data .k { opacity: .7; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.phb-weather-now .grid-data .v { font-weight: 600; font-size: 14px; }
.phb-forecast { display: flex; flex-direction: column; gap: 8px; }
.phb-forecast .f-row {
  display: grid; grid-template-columns: 64px 28px 1fr 60px 50px 50px;
  align-items: center; gap: 10px; font-size: 13px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.phb-forecast .f-row:last-child { border: 0; }
/* Day-of-week label — pill with subtle gold accent so weekdays read clearly
   against the dark navy card. The first row (Dnes / "Today") gets a stronger
   fill to anchor the eye. */
.phb-forecast .f-row .day {
  display: inline-grid; place-items: center;
  min-width: 42px; padding: 5px 10px;
  font-weight: 700; font-size: 12px;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(184, 148, 106, .12);
  border: 1px solid rgba(184, 148, 106, .28);
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
}
.phb-forecast .f-row:first-child .day {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.phb-forecast .f-row .ic { display: grid; place-items: center; }
.phb-forecast .f-row .ic svg { width: 18px; height: 18px; }
.phb-forecast .f-row .cond { opacity: .9; font-size: 12.5px; color: rgba(255,255,255,.92); }
.phb-forecast .f-row .hi { text-align: right; font-weight: 700; font-size: 14px; color: #fff; }
.phb-forecast .f-row .lo { text-align: right; opacity: .65; font-weight: 500; }
.phb-forecast .f-row .rain { text-align: right; font-size: 11px; opacity: .75; color: var(--gold-soft); font-weight: 600; }
@media (max-width: 760px) {
  .phb-weather-wrap { grid-template-columns: 1fr; padding: 24px; }
  .phb-forecast .f-row { grid-template-columns: 50px 24px 1fr 50px 40px; }
  .phb-forecast .f-row .rain { display: none; }
}

/* ============ ATTRACTIONS ============ */
.phb-attractions-section { background: var(--cream-2); }
.phb-attractions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.phb-attraction {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px;
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-2);
  transition: transform .25s, box-shadow .25s;
}
.phb-attraction:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.phb-attraction.flip { grid-template-columns: 1fr 1.1fr; }
.phb-attraction.flip .a-img { order: 2; }
.phb-attraction .a-img { position: relative; aspect-ratio: 1/1; background: var(--line); }
.phb-attraction .a-img .ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,.8);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
}
.phb-attraction .a-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phb-attraction .a-body {
  padding: 22px 22px 22px 0;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.phb-attraction.flip .a-body { padding: 22px 0 22px 22px; }
.phb-attraction .a-body h3 { margin: 0; font-size: 19px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.phb-attraction .a-body .km {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
}
.phb-attraction .a-body p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-2); }
.phb-attraction .a-body a.more {
  align-self: flex-start; margin-top: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
  text-decoration: none; padding: 8px 14px;
  border: 1px solid var(--blue); border-radius: 999px;
  transition: background .15s, color .15s;
}
.phb-attraction .a-body a.more:hover { background: var(--blue); color: #fff; }
@media (max-width: 820px) {
  .phb-attractions-grid { grid-template-columns: 1fr; gap: 18px; }
  .phb-attraction, .phb-attraction.flip { grid-template-columns: 1fr; }
  .phb-attraction.flip .a-img { order: 0; }
  .phb-attraction .a-img { aspect-ratio: 16/10; }
  .phb-attraction .a-body { padding: 20px; }
  .phb-attraction.flip .a-body { padding: 20px; }
}

/* ============ REVIEWS ============ */
.phb-reviews-section { background: #fff; }
.phb-reviews-band {
  background: var(--navy); color: #fff;
  border-radius: var(--r-lg); padding: 40px;
  display: grid; grid-template-columns: 220px 1fr 200px; gap: 40px; align-items: center;
}
.phb-reviews-band .score { text-align: center; }
.phb-reviews-band .score .big { font-size: 64px; font-weight: 700; line-height: 1; letter-spacing: -.04em; }
.phb-reviews-band .score .stars { color: #ffc847; margin: 8px 0 4px; font-size: 18px; letter-spacing: 2px; }
.phb-reviews-band .score .label { font-size: 12px; opacity: .7; letter-spacing: .06em; text-transform: uppercase; }
/* Wrapper that hosts the cards + prev/next arrows + edge-fade hints */
.phb-reviews-scroll {
  position: relative;
  min-width: 0; /* allow shrinking inside the grid track */
}
.phb-reviews-scroll::before,
.phb-reviews-scroll::after {
  /* edge fade so users see content is cut off */
  content: '';
  position: absolute; top: 0; bottom: 0; width: 36px;
  pointer-events: none; z-index: 1;
  opacity: 0; transition: opacity .2s;
}
.phb-reviews-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), rgba(14,41,73,0));
}
.phb-reviews-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), rgba(14,41,73,0));
}
.phb-reviews-scroll.has-prev::before { opacity: 1; }
.phb-reviews-scroll.has-next::after  { opacity: 1; }

.phb-reviews-cards {
  display: flex; gap: 16px; overflow-x: auto; padding: 4px; scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.phb-reviews-cards::-webkit-scrollbar { display: none; }
.phb-reviews-cards > .phb-review-card { scroll-snap-align: start; }

.phb-reviews-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--navy); border: 0;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 2;
  transition: transform .15s, opacity .15s;
}
.phb-reviews-nav svg { width: 20px; height: 20px; }
.phb-reviews-nav:hover { transform: translateY(-50%) scale(1.08); }
.phb-reviews-nav:active { transform: translateY(-50%) scale(.94); }
.phb-reviews-nav[hidden] { display: none; }
.phb-reviews-prev { left: -18px; }
.phb-reviews-next { right: -18px; }
@media (max-width: 880px) {
  .phb-reviews-prev { left: 4px; }
  .phb-reviews-next { right: 4px; }
}
.phb-review-card {
  flex: 0 0 280px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 18px;
  font-size: 13px; line-height: 1.55;
}
.phb-review-card .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.phb-review-card .who { display: flex; align-items: center; gap: 10px; }
.phb-review-card .av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 13px;
}
.phb-review-card .name { font-size: 13px; font-weight: 600; }
.phb-review-card .country { font-size: 11px; opacity: .6; }
.phb-review-card .rating { background: #fff; color: var(--navy); padding: 3px 8px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.phb-review-card p {
  margin: 0; opacity: .85; font-size: 13px;
  /* Clamp long reviews so all cards in the horizontal scroller share height */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.phb-reviews-band .cta-col { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.phb-reviews-band .cta-col .src { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; opacity: .6; }
.phb-reviews-band .cta-col a {
  background: var(--blue); color: #fff; padding: 12px 20px;
  border-radius: var(--r-md); text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
}
@media (max-width: 880px) {
  .phb-reviews-band { grid-template-columns: 1fr; gap: 24px; padding: 24px; text-align: center; }
  .phb-reviews-band .score .big { font-size: 48px; }
}

/* ============ GALLERY ============ */
.phb-gallery-section { background: var(--cream-2); }
.phb-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 8px;
}
.phb-gallery .g {
  position: relative; background: var(--line); overflow: hidden; border-radius: var(--r-md);
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}
.phb-gallery .g:hover { box-shadow: var(--shadow-md); }
.phb-gallery .g:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.phb-gallery .g .ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,.7);
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
}
.phb-gallery .g img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.phb-gallery .g:hover img { transform: scale(1.05); }
.phb-gallery .g.g1 .ph { background: linear-gradient(135deg, #5a8bb8, #2A6FDB); }
.phb-gallery .g.g2 .ph { background: linear-gradient(135deg, #6ba07f, #3e7a4f); }
.phb-gallery .g.g3 .ph { background: linear-gradient(135deg, #aa9472, #6f5e44); }
.phb-gallery .g.g4 .ph { background: linear-gradient(135deg, #4a7eb8, #2a4d7a); }
.phb-gallery .g.g5 .ph { background: linear-gradient(135deg, #b8a35a, #7a6a2a); }
.phb-gallery .g.g6 .ph { background: linear-gradient(135deg, #8a5aa8, #4f2a78); }
.phb-gallery .g.g7 .ph { background: linear-gradient(135deg, #5aa8a3, #2a7a72); }
.phb-gallery .g.g1 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 720px) {
  .phb-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .phb-gallery .g.g1 { grid-column: span 2; grid-row: span 2; }
}

/* ============ FOOTER ============ */
.phb-footer {
  background: var(--navy); color: rgba(255,255,255,.85);
  padding: 64px 32px 28px;
}
.phb-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.phb-footer h4 {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; margin: 0 0 18px;
}
.phb-footer a {
  display: block; text-decoration: none;
  color: rgba(255,255,255,.7); font-size: 14px;
  padding: 5px 0; transition: color .15s;
}
.phb-footer a:hover { color: #fff; }
.phb-footer .brand .logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800; letter-spacing: .06em;
  margin-bottom: 16px;
}
.phb-footer .brand .logo svg { width: 32px; height: 32px; }
.phb-footer .brand p { font-size: 14px; line-height: 1.6; margin: 0 0 18px; max-width: 36ch; }
.phb-footer .brand .contact { font-size: 14px; line-height: 1.7; }
.phb-footer .brand .contact b { color: #fff; }
.phb-footer-bottom {
  max-width: 1200px; margin: 56px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.5);
}

/* Developer credit (Flancer) — ported 1:1 from booking-flow.html reference.
   One inline link with: "Vyrobené s ❤ v Zuberci" + tiny dot separator +
   pulsing gold dot + "flancer". Subtle, intentional signature. */
.dev-credit {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  font-size: 12px;
  font-family: inherit;
  transition: color .2s;
}
.dev-credit__made,
.dev-credit__sep,
.dev-credit__flancer { display: inline-flex; align-items: center; }
.dev-credit__sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  margin: 0 2px;
}
.dev-credit__flancer {
  gap: 5px;
  font-weight: 600; letter-spacing: -.2px;
  font-size: 13px; line-height: 1;
  transition: color .2s;
}
.dev-credit__mark {
  width: .7em; height: .7em;
  border-radius: 9999px;
  background: var(--gold);
  position: relative;
  flex: 0 0 auto;
  animation: flancerDot 1.6s ease-in-out infinite;
}
.dev-credit__mark::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 9999px;
  border: 1.5px solid var(--gold);
  opacity: 0;
  animation: flancerRing 1.6s ease-out infinite;
}
.dev-credit__heart { color: var(--gold); }

/* Dark theme — for the navy footer */
.dev-credit--dark { color: rgba(255,255,255,.5); }
.dev-credit--dark:hover { color: rgba(255,255,255,.85); }
.dev-credit--dark .dev-credit__sep { background: rgba(255,255,255,.25); }
.dev-credit--dark .dev-credit__flancer { color: rgba(255,255,255,.85); }
.dev-credit--dark:hover .dev-credit__flancer { color: #fff; }

/* Light theme — kept for any future cream / white surface */
.dev-credit--light { color: rgba(14,41,73,.55); }
.dev-credit--light:hover { color: var(--navy); }
.dev-credit--light .dev-credit__sep { background: rgba(14,41,73,.25); }
.dev-credit--light .dev-credit__flancer { color: var(--navy); }

@keyframes flancerDot {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(.78);  opacity: .55; }
}
@keyframes flancerRing {
  0%   { transform: scale(.7); opacity: .5; }
  80%  { transform: scale(2);  opacity: 0;  }
  100% { transform: scale(2);  opacity: 0;  }
}
@media (prefers-reduced-motion: reduce) {
  .dev-credit__mark,
  .dev-credit__mark::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 880px) {
  .phb-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .phb-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 520px) { .phb-footer-inner { grid-template-columns: 1fr; } }

/* ============ FLOATING CONTACT WIDGET ============ */
.phb-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 80;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.phb-fab-items {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  transform-origin: bottom right; transition: transform .25s, opacity .25s;
}
.phb-fab-items.closed { transform: scale(.5) translateY(20px); opacity: 0; pointer-events: none; }
.phb-fab-item { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.phb-fab-item .label {
  background: #fff; color: var(--navy);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-md); white-space: nowrap;
}
.phb-fab-item .ico {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(15,23,42,.18), 0 2px 4px rgba(15,23,42,.1);
  transition: transform .15s;
}
.phb-fab-item:hover .ico { transform: scale(1.06); }
.phb-fab-item.wa .ico { background: var(--wa); }
.phb-fab-item.tg .ico { background: var(--teal); }
.phb-fab-item.call .ico { background: var(--navy); }
.phb-fab-item .ico svg { width: 26px; height: 26px; fill: #fff; }
.phb-fab-toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy); border: 0;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(14,41,73,.35), 0 2px 6px rgba(15,23,42,.2);
  position: relative; transition: transform .25s;
}
.phb-fab-toggle:hover { transform: scale(1.05); }
.phb-fab-toggle.open { transform: rotate(45deg); }
.phb-fab-toggle svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; }
.phb-fab-toggle .pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--navy);
  animation: phb-ring 2s ease-out infinite; pointer-events: none;
}
.phb-fab-badge {
  position: absolute; top: -2px; right: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #ff4d4f; color: #fff;
  font-size: 11px; font-weight: 700; display: grid; place-items: center;
}
.phb-fab-toggle.open .pulse,
.phb-fab-toggle.open .phb-fab-badge { display: none; }
@media (max-width: 520px) {
  .phb-fab { bottom: 16px; right: 16px; }
  .phb-fab-item .label { display: none; }
  .phb-fab-item .ico { width: 48px; height: 48px; }
  .phb-fab-toggle { width: 56px; height: 56px; }
}

/* ============ KEYFRAMES ============ */
@keyframes phb-pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes phb-ring {
  0% { opacity: .7; transform: scale(.9); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* ============ LIGHTBOX (room gallery) ============ */
.phb-lightbox {
  position: fixed; inset: 0; z-index: 10001;
  display: none;
  background: rgba(8, 18, 34, .92);
  backdrop-filter: blur(8px);
  flex-direction: column;
  padding: 56px 24px 24px;
}
.phb-lightbox.open { display: flex; animation: phb-lb-fade .2s ease-out; }
@keyframes phb-lb-fade { from { opacity: 0; } to { opacity: 1; } }

.phb-lightbox .phb-lb-stage {
  flex: 1; min-height: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.phb-lightbox .phb-lb-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  user-select: none; -webkit-user-drag: none;
}

.phb-lightbox .phb-lb-close,
.phb-lightbox .phb-lb-nav {
  position: absolute;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s, transform .15s;
  backdrop-filter: blur(6px);
}
.phb-lightbox .phb-lb-close:hover,
.phb-lightbox .phb-lb-nav:hover { background: rgba(255,255,255,.22); }
.phb-lightbox .phb-lb-close:active,
.phb-lightbox .phb-lb-nav:active { transform: scale(.92); }
.phb-lightbox .phb-lb-close svg,
.phb-lightbox .phb-lb-nav svg { width: 22px; height: 22px; }

.phb-lightbox .phb-lb-close {
  top: 16px; right: 16px; width: 44px; height: 44px; z-index: 2;
}
.phb-lightbox .phb-lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; z-index: 2;
}
.phb-lightbox .phb-lb-prev { left: 16px; }
.phb-lightbox .phb-lb-next { right: 16px; }
.phb-lightbox .phb-lb-nav:active { transform: translateY(-50%) scale(.92); }
.phb-lightbox.single .phb-lb-nav,
.phb-lightbox.single .phb-lb-thumbs,
.phb-lightbox.single .phb-lb-counter { display: none; }

.phb-lightbox .phb-lb-caption {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 12px 4px 8px;
  color: #fff; font-size: 14px;
}
.phb-lightbox .phb-lb-title { font-weight: 600; letter-spacing: -.01em; opacity: .95; }
.phb-lightbox .phb-lb-counter { font-size: 12px; opacity: .65; font-variant-numeric: tabular-nums; }

.phb-lightbox .phb-lb-thumbs {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 6px 2px 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.25) transparent;
}
.phb-lightbox .phb-lb-thumbs::-webkit-scrollbar { height: 6px; }
.phb-lightbox .phb-lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.25); border-radius: 3px; }
.phb-lightbox .phb-lb-thumb {
  flex: 0 0 auto;
  width: 80px; height: 56px;
  background: rgba(255,255,255,.08);
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden; cursor: pointer;
  padding: 0;
  transition: border-color .15s, opacity .15s;
  opacity: .65;
}
.phb-lightbox .phb-lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phb-lightbox .phb-lb-thumb:hover { opacity: 1; }
.phb-lightbox .phb-lb-thumb.active { border-color: #fff; opacity: 1; }

body.phb-lb-open { overflow: hidden; }

@media (max-width: 640px) {
  .phb-lightbox { padding: 56px 12px 12px; }
  .phb-lightbox .phb-lb-nav { width: 42px; height: 42px; }
  .phb-lightbox .phb-lb-prev { left: 8px; }
  .phb-lightbox .phb-lb-next { right: 8px; }
  .phb-lightbox .phb-lb-thumb { width: 60px; height: 44px; }
}

/* ============ ARTICLE MODAL (attraction details) ============ */
/* Clickable attraction card — affordance */
.phb-attraction.phb-has-article { cursor: pointer; }
.phb-attraction.phb-has-article:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 4px;
}
.phb-attraction .a-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.phb-attraction.phb-has-article:hover .a-img img { transform: scale(1.04); }

.phb-article-modal {
  position: fixed; inset: 0; z-index: 10001;
  display: none;
  background: rgba(14, 41, 73, .72);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  padding: 32px 16px;
}
.phb-article-modal.open {
  display: flex; align-items: flex-start; justify-content: center;
  animation: phb-lb-fade .2s ease-out;
}

.phb-article-modal .phb-am-content {
  background: var(--cream);
  border-radius: var(--r-lg);
  max-width: 820px; width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  margin: auto 0;
}

.phb-article-modal .phb-am-close {
  position: absolute; top: 16px; right: 16px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--navy);
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid; place-items: center; z-index: 5;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: transform .15s, background .15s;
}
.phb-article-modal .phb-am-close:hover { transform: scale(1.08); background: #fff; }
.phb-article-modal .phb-am-close:active { transform: scale(.94); }
.phb-article-modal .phb-am-close svg { width: 20px; height: 20px; }

.phb-article-modal .phb-am-thumb {
  position: relative; background: var(--cream-2);
}
.phb-article-modal .phb-am-thumb img {
  width: 100%; height: 340px; object-fit: cover; display: block;
}
.phb-article-modal .phb-am-thumb::after {
  /* soft gradient from image into cream for visual continuity */
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

.phb-article-modal .phb-am-body {
  padding: 32px 44px 44px;
  color: var(--ink);
}
.phb-article-modal .phb-am-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 10px;
}
.phb-article-modal .phb-am-title {
  font-size: 30px; font-weight: 700; line-height: 1.15;
  letter-spacing: -.02em; color: var(--navy);
  margin: 0 0 18px;
}
.phb-article-modal .phb-am-text {
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-2);
}
.phb-article-modal .phb-am-text > *:first-child { margin-top: 0; }
.phb-article-modal .phb-am-text > *:last-child  { margin-bottom: 0; }
.phb-article-modal .phb-am-text p { margin: 0 0 14px; }
.phb-article-modal .phb-am-text h2,
.phb-article-modal .phb-am-text h3,
.phb-article-modal .phb-am-text h4 {
  color: var(--navy);
  margin: 26px 0 10px;
  letter-spacing: -.01em;
}
.phb-article-modal .phb-am-text h2 { font-size: 22px; }
.phb-article-modal .phb-am-text h3 { font-size: 18px; }
.phb-article-modal .phb-am-text h4 { font-size: 16px; }
.phb-article-modal .phb-am-text ul,
.phb-article-modal .phb-am-text ol { margin: 0 0 14px; padding-left: 22px; }
.phb-article-modal .phb-am-text li { margin: 4px 0; }
.phb-article-modal .phb-am-text img {
  max-width: 100%; height: auto;
  border-radius: var(--r-md);
  margin: 14px 0;
  box-shadow: var(--shadow-sm);
}
.phb-article-modal .phb-am-text a {
  color: var(--gold); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 2px;
}
.phb-article-modal .phb-am-text a:hover { color: var(--blue-dark); }
.phb-article-modal .phb-am-text blockquote {
  margin: 18px 0; padding: 14px 18px;
  background: rgba(184,148,106,.12);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-style: italic;
}
.phb-article-modal .phb-am-loading,
.phb-article-modal .phb-am-error {
  text-align: center; padding: 40px 0; color: var(--ink-3); font-size: 14px;
}
.phb-article-modal .phb-am-error { color: #c0392b; }

@media (max-width: 640px) {
  .phb-article-modal { padding: 16px 8px; }
  .phb-article-modal .phb-am-body { padding: 26px 22px 32px; }
  .phb-article-modal .phb-am-title { font-size: 22px; }
  .phb-article-modal .phb-am-thumb img { height: 200px; }
  .phb-article-modal .phb-am-close { top: 10px; right: 10px; width: 38px; height: 38px; }
}

/* ============ COOKIE CONSENT (from design: cookie-consent.html, variants A + F) ============ */
.cookie-bar {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 75;
  width: min(420px, calc(100vw - 44px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 40px rgba(14, 41, 73, 0.16), 0 4px 12px rgba(14, 41, 73, 0.08);
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(0.32, 0.72, 0.4, 1), opacity .25s;
}
.cookie-bar.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-bar .head {
  display: flex; align-items: center; gap: 10px;
}
.cookie-bar .head .ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(184,148,106,0.14);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cookie-bar .head .ic svg { width: 17px; height: 17px; }
.cookie-bar .head h4 {
  margin: 0; font-size: 14px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.005em;
}
.cookie-bar .head .x {
  margin-left: auto;
  background: transparent; border: 0;
  color: var(--ink-3); cursor: pointer;
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background .15s, color .15s;
}
.cookie-bar .head .x:hover { background: var(--line-2); color: var(--navy); }
.cookie-bar .head .x svg { width: 14px; height: 14px; }
.cookie-bar p {
  margin: 0; font-size: 13px; line-height: 1.5; color: var(--ink-2);
}
.cookie-bar p a {
  color: var(--gold); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid rgba(184,148,106,0.4);
}
.cookie-bar p a:hover { color: var(--navy); border-color: var(--navy); }
.cookie-bar .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-bar .actions button {
  flex: 1; min-width: 0;
  padding: 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: all .15s;
}
.cookie-bar .actions .accept {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.cookie-bar .actions .accept:hover { background: var(--gold); border-color: var(--gold); }
.cookie-bar .actions .accept:active { transform: scale(0.98); }
.cookie-bar .actions .reject,
.cookie-bar .actions .customize {
  background: #fff; color: var(--ink-2); border-color: var(--line);
}
.cookie-bar .actions .reject:hover,
.cookie-bar .actions .customize:hover { border-color: var(--navy); color: var(--navy); }

/* Settings panel (Variant F) */
.cookie-bar--settings { width: min(460px, calc(100vw - 44px)); }
.cookie-bar--settings .cookie-cats {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line-2);
  padding-top: 12px;
}
.cookie-bar--settings .cookie-cat {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 0; cursor: pointer;
}
.cookie-bar--settings .cookie-cat.is-locked { cursor: default; opacity: .92; }
.cookie-bar--settings .cookie-cat__txt { flex: 1; min-width: 0; }
.cookie-bar--settings .cookie-cat__txt .n {
  font-size: 13px; font-weight: 700; color: var(--navy);
}
.cookie-bar--settings .cookie-cat__txt .d {
  font-size: 12px; color: var(--ink-3); margin-top: 1px;
}
.cookie-bar--settings .toggle {
  position: relative; flex-shrink: 0;
  width: 36px; height: 20px; border-radius: 999px;
  background: var(--line); transition: background .2s;
}
.cookie-bar--settings .toggle.is-on { background: var(--navy); }
.cookie-bar--settings .toggle .knob {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: left .2s;
}
.cookie-bar--settings .toggle.is-on .knob { left: 18px; }
.cookie-bar--settings .cookie-cat.is-locked .toggle { opacity: .5; }
.cookie-bar--settings .actions {
  border-top: 1px solid var(--line-2); padding-top: 12px;
}

@media (max-width: 520px) {
  .cookie-bar {
    left: 14px; right: 14px; bottom: 14px;
    width: auto; padding: 14px 16px 14px;
  }
  .cookie-bar .actions button { flex: 1 1 calc(50% - 4px); }
  .cookie-bar .actions .accept { flex: 1 1 100%; order: -1; }
}

/* ============ AVAILABILITY BOARD — skeleton loader ============ */
/* Mirrors the final widget layout so the page doesn't reflow when JS
   replaces this block with real data. Cream + navy palette + shimmer. */
.phb-avail .phb-skel { padding: 2px; }

.phb-avail .phb-skel-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 18px; flex-wrap: wrap;
}
.phb-avail .phb-skel-title {
  height: 22px; width: 240px; border-radius: 6px;
}
.phb-avail .phb-skel-legend {
  display: flex; gap: 10px;
}
.phb-avail .phb-skel-pill {
  height: 18px; width: 70px; border-radius: 999px;
}

.phb-avail .phb-skel-rows {
  display: flex; flex-direction: column; gap: 10px;
}
.phb-avail .phb-skel-row {
  display: grid;
  grid-template-columns: 200px 1fr 120px;
  gap: 14px; align-items: center;
  padding: 8px 0;
}
.phb-avail .phb-skel-row--head { padding: 0 0 4px; }

.phb-avail .phb-skel-meta { display: flex; align-items: center; gap: 10px; }
.phb-avail .phb-skel-avatar {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
}
.phb-avail .phb-skel-lines {
  display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0;
}
.phb-avail .phb-skel-line {
  height: 12px; width: 70%; border-radius: 4px;
}
.phb-avail .phb-skel-line--sm { width: 45%; height: 10px; opacity: .8; }

.phb-avail .phb-skel-cells {
  display: grid;
  grid-template-columns: repeat(var(--phb-skel-cols, 14), 1fr);
  gap: 4px;
}
.phb-avail .phb-skel-cell {
  aspect-ratio: 1; border-radius: 6px;
  min-height: 28px;
}
.phb-avail .phb-skel-dh {
  height: 28px; border-radius: 4px; opacity: .55;
}

.phb-avail .phb-skel-cta {
  height: 36px; border-radius: 8px;
}
.phb-avail .phb-skel-cta-pad { width: 120px; }

.phb-avail .phb-skel-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--line-2);
}
.phb-avail .phb-skel-chip {
  height: 32px; width: 130px; border-radius: 999px;
}

/* Shimmer surface — cream-tinted gradient sliding across each placeholder.
   Uses prefers-reduced-motion to stay accessible. */
.phb-avail .sh {
  display: inline-block;
  background:
    linear-gradient(
      90deg,
      rgba(14, 41, 73, .06)  0%,
      rgba(255, 255, 255, .55) 50%,
      rgba(14, 41, 73, .06) 100%
    ),
    rgba(14, 41, 73, .06);
  background-size: 200% 100%, 100% 100%;
  background-position: -150% 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  animation: phb-skel-shimmer 1.6s ease-in-out infinite;
}
@keyframes phb-skel-shimmer {
  0%   { background-position: -150% 0, 0 0; }
  100% { background-position:  150% 0, 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .phb-avail .sh { animation: none; }
}

/* Mobile: collapse meta column, hide CTA pad — matches loaded widget */
@media (max-width: 720px) {
  .phb-avail .phb-skel-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .phb-avail .phb-skel-cta-pad,
  .phb-avail .phb-skel-cta { display: none; }
  .phb-avail .phb-skel-cells { grid-template-columns: repeat(7, 1fr); }
  .phb-avail .phb-skel-title { width: 60%; }
}

/* ============ WEATHER — skeleton loader ============ */
/* Mirrors loaded widget dimensions; shimmer uses light-on-navy palette so it
   blends with the dark weather card. */
.phb-weather-skel .phb-wskel-pill,
.phb-weather-skel .phb-wskel-icon,
.phb-weather-skel .phb-wskel-deg,
.phb-weather-skel .phb-wskel-cond,
.phb-weather-skel .phb-wskel-k,
.phb-weather-skel .phb-wskel-v,
.phb-weather-skel .phb-wskel-day,
.phb-weather-skel .phb-wskel-ic,
.phb-weather-skel .phb-wskel-line,
.phb-weather-skel .phb-wskel-hi,
.phb-weather-skel .phb-wskel-lo,
.phb-weather-skel .phb-wskel-rain {
  display: block;
  background: rgba(255, 255, 255, .08);
  border-radius: 6px;
}
.phb-weather-skel .phb-wskel-pill      { height: 14px; width: 110px; border-radius: 999px; }
.phb-weather-skel .phb-wskel-pill--lg  { width: 180px; }

.phb-weather-skel .phb-wskel-icon      { width: 64px; height: 64px; border-radius: 16px; flex-shrink: 0; }
.phb-weather-skel .phb-wskel-temp-col  { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.phb-weather-skel .phb-wskel-deg       { height: 44px; width: 110px; }
.phb-weather-skel .phb-wskel-cond      { height: 14px; width: 60%; }

.phb-weather-skel .phb-wskel-grid      { /* uses parent .grid-data already */ }
.phb-weather-skel .phb-wskel-grid > div { display: flex; flex-direction: column; gap: 6px; }
.phb-weather-skel .phb-wskel-k         { height: 10px; width: 60px; opacity: .8; }
.phb-weather-skel .phb-wskel-v         { height: 14px; width: 90px; }

.phb-weather-skel .phb-wskel-row       { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.phb-weather-skel .phb-wskel-row:last-child { border: 0; }
.phb-weather-skel .phb-wskel-day       { height: 22px; width: 50px; border-radius: 999px; background: rgba(184,148,106,.18); }
.phb-weather-skel .phb-wskel-ic        { height: 18px; width: 18px; border-radius: 4px; margin: 0 auto; }
.phb-weather-skel .phb-wskel-line      { height: 12px; width: 70%; }
.phb-weather-skel .phb-wskel-hi        { height: 14px; width: 32px; margin-left: auto; }
.phb-weather-skel .phb-wskel-lo        { height: 12px; width: 28px; margin-left: auto; opacity: .7; }
.phb-weather-skel .phb-wskel-rain      { height: 10px; width: 36px; margin-left: auto; opacity: .6; }

/* Shimmer overlay — uses the same .w-sh class but with white highlight tuned
   for the navy card (so the bright sweep is visible). */
.phb-weather-skel .w-sh {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.04) 0%,
      rgba(255,255,255,.18) 50%,
      rgba(255,255,255,.04) 100%
    ),
    rgba(255,255,255,.08);
  background-size: 200% 100%, 100% 100%;
  background-position: -150% 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  animation: phb-wskel-shimmer 1.6s ease-in-out infinite;
}
@keyframes phb-wskel-shimmer {
  0%   { background-position: -150% 0, 0 0; }
  100% { background-position:  150% 0, 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .phb-weather-skel .w-sh { animation: none; }
}

/* Match real forecast grid columns for the skeleton rows (no horizontal jump) */
.phb-weather-skel.phb-forecast .f-row { grid-template-columns: 64px 28px 1fr 60px 50px 50px; }
@media (max-width: 760px) {
  .phb-weather-skel.phb-forecast .f-row { grid-template-columns: 50px 24px 1fr 50px 40px; }
  .phb-weather-skel .phb-wskel-rain { display: none; }
}
