/* ============== Hero · Globus Blog (minimal text link) ============== */
.hero-blog-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 4px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  align-self: center;
  transition: color 240ms var(--ease-standard);
}
.hero-blog-link::after {
  content: ""; position: absolute;
  left: 4px; right: 4px; bottom: 10px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.35); transform-origin: left;
  transition: transform 420ms var(--ease-emphasised);
}
.hero-blog-link:hover { color: var(--gold); }
.hero-blog-link:hover::after { transform: scaleX(1); }
.hero-blog-link svg { transition: transform 240ms var(--ease-standard); }
.hero-blog-link:hover svg { transform: translateX(4px); }

/* Homepage room-card "Забронировать" CTA — matches the header .btn-gold exactly
   (gold pill, white text, shimmer sweep, gold-hover + shadow-gold on hover). */
.room-card.room-page-card .book-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 0;
  background: var(--gold);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: background 240ms var(--ease-standard),
              box-shadow 240ms var(--ease-standard),
              transform 80ms var(--ease-standard);
}
.room-card.room-page-card .book-btn::before {
  /* gold shimmer sweep — identical to .btn-gold::before */
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.32), transparent);
  transition: left 720ms var(--ease-emphasised);
  pointer-events: none;
}
.room-card.room-page-card .book-btn svg {
  transition: transform 240ms var(--ease-standard);
  position: relative; z-index: 1;
}
.room-card.room-page-card .book-btn:hover {
  background: var(--gold-hover);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.room-card.room-page-card .book-btn:hover::before { left: 140%; }
.room-card.room-page-card .book-btn:hover svg { transform: translateX(4px); }
.room-card.room-page-card .book-btn:active { transform: scale(0.985); }

/* Price tag — bigger, bolder, with a soft scrim ring for legibility on imagery */
.room-card .price-tag {
  padding: 12px 18px 14px;
  background: var(--gold);
  box-shadow:
    0 10px 24px rgba(10, 37, 61, 0.28),
    0 0 0 1px rgba(255,255,255,0.10) inset;
}
.room-card .price-tag small {
  display: block;
  color: #fff;
  opacity: 1;
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  margin-bottom: 4px;
  text-shadow: 0 1px 1px rgba(10, 37, 61, 0.18);
}
.room-card .price-tag b {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(10, 37, 61, 0.22);
}
@media (max-width: 720px) {
  .room-card.room-page-card .book-btn { width: 100%; }
  .room-card .price-tag b { font-size: 16px; }
}

/* ============== Weather strip — sits between NOMERA and SERVICES ============== */
.weather-strip {
  padding: 40px 0;
  background: var(--neutral-50);
  border-top: 1px solid rgba(193, 154, 107, 0.32);
  border-bottom: 1px solid rgba(193, 154, 107, 0.32);
  position: relative;
}
.weather-strip::before,
.weather-strip::after {
  /* secondary whisper hairline for layered editorial rule */
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(193,154,107,0.18) 50%, transparent 100%);
  pointer-events: none;
}
.weather-strip::before { top: 3px; }
.weather-strip::after  { bottom: 3px; }

.weather-inner {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 0 clamp(24px, 6vw, 96px);
}

/* Cell — uniform 3-row vertical rhythm so MAIN baselines line up across all 3 cells */
.ws-cell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.ws-place { justify-self: start;  align-items: flex-start; text-align: left; }
.ws-date  { justify-self: center; align-items: center;     text-align: center; }
.ws-temp  { justify-self: end;    align-items: flex-end;   text-align: right; }

/* Eyebrow + sub share metrics so the MAIN line sits at the exact vertical
   centre of every cell — that's what makes the three baselines align. */
.ws-eyebrow,
.ws-sub {
  font-family: var(--font-caps);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.ws-eyebrow { color: var(--gold); }
.ws-sub     { color: var(--fg-subtle); }

/* Main text — all three at the same font-size + line-height so baselines
   are mathematically aligned, regardless of which row each lives in. */
.ws-main {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--primary-950);
  letter-spacing: -0.018em;
  font-variant-numeric: tabular-nums lining-nums;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.ws-temp-num { font-size: inherit; line-height: inherit; letter-spacing: -0.022em; }

/* Connector — gradient hairline + a small gold diamond + a faint companion */
.ws-rule {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(193, 154, 107, 0.50) 16%,
    rgba(193, 154, 107, 0.50) 84%,
    transparent 100%);
  align-self: center;
}
.ws-rule::before,
.ws-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--neutral-50);
}
.ws-rule::before { left: 30%; width: 3px; height: 3px; opacity: 0.55; }
.ws-rule::after  { left: 50%; width: 5px; height: 5px; }

/* Weather icon — soft gold halo behind the glyph */
.ws-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold);
  flex-shrink: 0;
}
.ws-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,154,107,0.14) 0%, transparent 70%);
}
.ws-icon svg { width: 34px; height: 34px; position: relative; z-index: 1; }

@media (max-width: 1100px) {
  .weather-inner { gap: 32px; padding: 0 32px; }
  .ws-main { font-size: 30px; }
  .ws-icon { width: 40px; height: 40px; }
  .ws-icon svg { width: 28px; height: 28px; }
}
@media (max-width: 720px) {
  .weather-strip { padding: 28px 0; }
  .weather-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0;
  }
  .ws-rule { display: none; }
  .ws-place, .ws-date, .ws-temp {
    justify-self: center;
    align-items: center;
    text-align: center;
  }
  .ws-main { font-size: 26px; }
}
