:root {
  --bg: #0c0b0a;
  --bg-elevated: #161412;
  --bg-soft: #1e1b18;
  --text: #f3efe6;
  --text-muted: #b6ab97;
  --accent: #c9a24a;
  --accent-hover: #dbb65c;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 12px;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
  --header-bg: rgba(12, 11, 10, 0.9);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --on-accent: #1a1408;
  --btn-radius: 999px;
  --btn-transform: none;
  --btn-tracking: 0;
  --letter-display: -0.015em;
  --hero-shade-y: linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.7) 100%);
  --hero-shade-x: linear-gradient(90deg, rgba(8, 8, 8, 0.45) 0%, transparent 60%);
  --panel-bg: var(--bg-elevated);
  --card-caption-bg: linear-gradient(180deg, transparent 0%, rgba(12, 11, 10, 0.92) 78%);
  --fab-grad: linear-gradient(145deg, #dbb65c 0%, #c9a24a 55%, #9a7a2e 100%);
  --fab-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  --footer-fade: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
  --body-glow-1: rgba(201, 162, 74, 0.12);
  --body-glow-2: transparent;
  --body-grad-top: #100e0c;
  --body-grad-bottom: #0c0b0a;
  --hero-text: #ffffff;
  --hero-lead: rgba(255, 255, 255, 0.88);
  --accent-soft: rgba(201, 162, 74, 0.14);
  --logo-ring: rgba(201, 162, 74, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top, var(--body-glow-1), transparent 30%), var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 74, 0.45);
}

.brand__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.6vw, 1.7rem);
  letter-spacing: var(--letter-display);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0.55rem 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 0.34rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 50vw, 660px);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero__shade {
  background: var(--hero-shade-y), var(--hero-shade-x);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  align-content: end;
  padding: 2rem 0 2.2rem;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.06;
}

.hero-lead {
  color: var(--text-muted);
  margin-top: 0.8rem;
  max-width: 760px;
}

.hero__cta {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: var(--btn-radius);
  padding: 0.62rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  text-transform: var(--btn-transform);
  letter-spacing: var(--btn-tracking);
}

.btn:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-sm {
  padding: 0.4rem 0.74rem;
  font-size: 0.84rem;
}

.stack {
  display: grid;
  gap: 1rem;
  margin: 1.2rem auto 2rem;
}

.block,
.card,
.profile-hero {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.block,
.card {
  padding: 1rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.section-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

input,
textarea,
select {
  width: 100%;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.64rem 0.7rem;
  font: inherit;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.profile-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.profile-card__media {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 520px;
  overflow: hidden;
}

.profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 1rem);
  padding: 0.22rem 0.48rem;
  border-radius: 6px;
  font-family: var(--font-body, inherit);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.profile-badge--vip {
  top: 0.55rem;
  left: 0.55rem;
  background: rgba(168, 120, 42, 0.78);
  border: 1px solid rgba(245, 210, 130, 0.55);
  color: #fff6e4;
}

.profile-badge--verified {
  bottom: 0.55rem;
  left: 0.55rem;
  background: rgba(28, 110, 78, 0.78);
  border: 1px solid rgba(140, 220, 185, 0.45);
  color: #e8fff4;
}

.profile-card__caption {
  padding: 0.7rem 0.8rem;
}

.profile-card__name {
  margin: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.profile-card__meta {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

/* Online presence */
.presence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #3ecf8e;
  vertical-align: middle;
  line-height: 1;
}
.presence-badge[hidden] {
  display: none !important;
}
.presence-badge__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3ecf8e;
  box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.7);
  animation: presencePulse 1.4s ease-out infinite;
}
.presence-badge__text {
  font-family: var(--font-body);
}
@keyframes presencePulse {
  0% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.65); opacity: 1; }
  70% { box-shadow: 0 0 0 8px rgba(62, 207, 142, 0); opacity: 0.85; }
  100% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0); opacity: 1; }
}
.profile-card.is-presence-online {
  border-color: rgba(62, 207, 142, 0.35);
}
.profile-info h1 .presence-badge {
  font-size: 0.78rem;
  margin-left: 0.25rem;
}

.presence-toast-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12000;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.55rem;
  max-width: min(340px, calc(100vw - 2rem));
  pointer-events: none;
}
.presence-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: rgba(16, 18, 20, 0.94);
  border: 1px solid rgba(62, 207, 142, 0.35);
  color: #f2efe9;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.presence-toast.is-in {
  opacity: 1;
  transform: translateY(0);
}
.presence-toast.is-out {
  opacity: 0;
  transform: translateY(8px);
}
.presence-toast__dot {
  flex: 0 0 auto;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #3ecf8e;
  animation: presencePulse 1.4s ease-out infinite;
}
.presence-toast__body {
  font-size: 0.9rem;
  line-height: 1.35;
}
.presence-toast__body strong {
  color: #fff;
}
@media (max-width: 640px) {
  .presence-toast-stack {
    left: 1rem;
    right: 1rem;
    bottom: 5.5rem;
    max-width: none;
  }
}

.page-shell {
  margin: 1.2rem auto 2rem;
  display: grid;
  gap: 1rem;
}

.breadcrumb {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-hero,
.article {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.city-list,
.blog-list {
  display: grid;
  gap: 0.5rem;
}

.city-list a,
.blog-list a {
  display: block;
  padding: 0.65rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
}

.blog-list__excerpt {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.empty {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-muted);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.pager a,
.pager span {
  min-width: 34px;
  text-align: center;
  padding: 0.38rem 0.56rem;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.pager .is-current {
  background: var(--accent);
  color: var(--on-accent);
  border-color: transparent;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.gallery-main {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  max-height: min(78vh, 860px);
  background: var(--bg-soft);
}

.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  max-height: min(78vh, 860px);
  object-fit: cover;
}

.gallery-main__img {
  cursor: zoom-in;
}

.gallery-thumbs {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.gallery-thumbs button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.gallery-thumbs button.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.gallery-zoom-hint {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin: 0.45rem 0 0;
}

.attr-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.attr-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  background: var(--bg-soft);
}

.attr-item span {
  display: block;
  font-size: 0.77rem;
  color: var(--text-muted);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.9rem 0;
}

.bio {
  color: var(--text);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.footer-shell {
  padding: 1.2rem 0;
  display: grid;
  gap: 0.75rem;
}

.footer-brand p,
.footer-copy {
  margin: 0;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-links a {
  padding: 0.38rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
}

.chat-widget {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 90;
}

.chat-fab {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}

.chat-fab__hint {
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.chat-fab__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: var(--fab-grad);
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--fab-shadow);
}

.chat-fab__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chat-fab__avatar svg {
  width: 34px;
  height: 34px;
  display: block;
}

.chat-panel {
  width: min(360px, calc(100vw - 1.2rem));
  margin-top: 0.55rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
}

.chat-panel.is-open {
  display: block;
}

.chat-panel__head {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-presence,
.chat-status {
  margin: 0;
  padding: 0.45rem 0.75rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.chat-messages {
  max-height: 320px;
  overflow: auto;
  padding: 0.65rem;
  display: grid;
  gap: 0.45rem;
}

.chat-msg {
  max-width: 84%;
  border-radius: 10px;
  padding: 0.48rem 0.56rem;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.chat-msg--guest {
  margin-left: auto;
}

.chat-msg--admin {
  margin-right: auto;
}

.chat-msg__meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.chat-msg__body {
  margin-top: 0.15rem;
  font-size: 0.9rem;
}

.chat-suggestions {
  padding: 0 0.65rem 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chat-suggest {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-muted);
  padding: 0.25rem 0.6rem;
  cursor: pointer;
}

.chat-form {
  padding: 0.65rem;
  display: grid;
  gap: 0.45rem;
}

.chat-locked {
  color: #ffb5b5;
  font-size: 0.82rem;
  padding: 0.55rem 0.75rem;
}

.chat-locked p {
  margin: 0 0 0.45rem;
}

@media (min-width: 1024px) {
  .hero.hero--home {
    height: auto;
    min-height: clamp(420px, 46vw, 620px);
  }
  .hero.hero--home .hero__inner {
    min-height: 100%;
  }
  .hero.hero--home .hero__img {
    object-position: center 22%;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 10, 0.88);
}

.lightbox__stage {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100vw - 2rem));
  height: min(88vh, 920px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.lightbox__canvas {
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
  touch-action: none;
  will-change: transform;
}

.lightbox__canvas img,
.lightbox__canvas video {
  display: block;
  max-width: min(1220px, calc(100vw - 2rem));
  max-height: min(88vh, 920px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.55);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(9, 11, 18, 0.82);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.45rem;
}

.lightbox__close {
  top: 14px;
  right: 14px;
}

.lightbox__nav--prev {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__toolbar {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(9, 11, 18, 0.82);
}

.lightbox__toolbar button {
  min-width: 38px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.lightbox__hint {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  white-space: nowrap;
}

body.lightbox-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 980px) {
  .profile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .profile-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 6px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--bg-elevated);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    border-radius: 10px;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-card__media {
    max-height: 340px;
  }
  .gallery-main {
    max-height: 66vh;
  }
  .gallery-main img,
  .gallery-main video {
    max-height: 66vh;
  }
  .lightbox__stage {
    width: calc(100vw - 0.7rem);
    height: calc(100vh - 1.2rem);
  }
  .lightbox__canvas img,
  .lightbox__canvas video {
    max-width: calc(100vw - 0.8rem);
    max-height: calc(100vh - 5.6rem);
    border-radius: 10px;
  }
  .lightbox__toolbar {
    width: calc(100vw - 0.9rem);
    justify-content: center;
    gap: 0.3rem;
  }
  .lightbox__hint {
    display: none;
  }
  .chat-fab__hint {
    display: inline-block;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 1rem);
  }
  .profile-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .hero {
    min-height: 380px;
  }
  .hero__img {
    object-position: center 22%;
  }
  .chat-fab__avatar {
    width: 52px;
    height: 52px;
  }
  .chat-panel {
    width: calc(100vw - 1rem);
  }
}

/* Final desktop override: keep hero more visible */
@media (min-width: 1024px) {
  .hero.hero--home.hero--visual {
    height: min(68vh, 680px) !important;
    min-height: 460px !important;
  }
  .hero.hero--home.hero--visual .hero__inner {
    min-height: 100% !important;
  }
  .hero.hero--home.hero--visual .hero__img {
    object-position: center 22% !important;
  }
}

/* Full-page announcement popup */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html.has-announce,
html.has-announce body {
  overflow: hidden;
}

.site-announce {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.site-announce[hidden] {
  display: none !important;
}

.site-announce__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(196, 165, 116, 0.18), transparent 55%),
    rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(6px);
}

.site-announce__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(196, 165, 116, 0.35);
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(36, 30, 24, 0.98), rgba(16, 14, 12, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  color: var(--text, #f3eee6);
  animation: announceIn 0.35s ease both;
}

@keyframes announceIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.site-announce__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.25;
  color: var(--accent, #c4a574);
}

.site-announce__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted, #d6d0c3);
}

.site-announce__body p {
  margin: 0 0 0.85rem;
}

.site-announce__body a {
  color: var(--accent, #c4a574);
}

.site-announce__btn {
  margin-top: 1.25rem;
  width: 100%;
  min-height: 48px;
  font-weight: 700;
}

/* RTL (Arabic) layout helpers */
html[dir="rtl"] .chat-widget {
  right: auto;
  left: 14px;
}
html[dir="rtl"] .chat-msg--guest {
  margin-left: 0;
  margin-right: auto;
}
html[dir="rtl"] .lightbox__close {
  right: auto;
  left: 14px;
}
html[dir="rtl"] .lightbox__nav--prev {
  left: auto;
  right: 14px;
}
html[dir="rtl"] .lightbox__nav--next {
  right: auto;
  left: 14px;
}
html[dir="rtl"] .presence-toast,
html[dir="rtl"] .online-toast {
  left: 1rem;
  right: auto;
}
