:root {
  --bg: #070707;
  --bg-soft: #0e0e0e;
  --panel: #121212;
  --panel-2: #171717;
  --text: #f7f4ea;
  --muted: #c8c0ac;
  --gold: #d7b35a;
  --gold-strong: #f0ca6b;
  --line: rgba(215, 179, 90, 0.25);
  --line-soft: rgba(255, 255, 255, 0.07);
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 18% -8%,
      rgba(215, 179, 90, 0.14) 0,
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 6%,
      rgba(215, 179, 90, 0.09) 0,
      transparent 30%
    ),
    var(--bg);
  line-height: 1.6;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--gold-strong);
}
img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(7, 7, 7, 0.66);
  border-bottom: 1px solid var(--line-soft);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(7, 7, 7, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}
.site-header .container.nav-wrap {
  width: 100%;
  max-width: 100%;
  padding-left: 4.5vw;
  padding-right: 4.5vw;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
}
.brand img {
  width: 72px;
  height: auto;
  display: block;
}

.site-nav ul {
  margin: 0;
  padding: 0.34rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.22rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.site-nav a {
  color: #d9d2c1;
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.82;
  position: relative;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a.active,
.site-nav a:hover {
  color: #f0e0b6;
  opacity: 1;
}
.site-nav a.active {
  background: rgba(215, 179, 90, 0.12);
}
.site-nav a.active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  color: #e6dfcd;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 0.5rem;
  font-size: 0;
  letter-spacing: 0;
  text-transform: none;
  line-height: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.5rem;
  box-sizing: border-box;
}
.nav-toggle-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.25rem;
  height: 1rem;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: #e6dfcd;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-toggle-close {
  display: none;
  box-sizing: border-box;
  width: 1.25rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  color: #f0e6d0;
}
.nav-toggle-close .nav-toggle-x-svg {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-hamburger {
  display: none;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-close {
  display: inline-flex;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.36rem;
}
.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #e8dfc9;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.nav-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 179, 90, 0.6);
  background: rgba(215, 179, 90, 0.12);
  color: #f4dfac;
}
.nav-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(215, 179, 90, 0.09),
      transparent 42%
    ),
    linear-gradient(135deg, #090909 0%, #0d0d0d 100%);
}
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.hero-split::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 12px
    );
}
.hero-split::after {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: calc(50% - 9vw);
  width: 18vw;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(215, 179, 90, 0.2) 0%,
    rgba(215, 179, 90, 0.08) 36%,
    transparent 72%
  );
  filter: blur(8px);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 0 2.6rem 0 4.5vw;
}
.hero-copy > .eyebrow,
.hero-copy > .hero-stars,
.hero-copy > .hero-title,
.hero-copy > p,
.hero-copy > .hero-actions {
  opacity: 0;
  transform: translateY(14px);
  animation: heroStaggerIn 0.7s ease forwards;
}
.hero-copy > .eyebrow {
  animation-delay: 0.08s;
}
.hero-copy > .hero-stars {
  animation-delay: 0.12s;
}
.hero-copy > .hero-title {
  animation-delay: 0.18s;
}
.hero-copy > p {
  animation-delay: 0.28s;
}
.hero-copy > .hero-actions {
  animation-delay: 0.38s;
}
.hero-copy h1 {
  margin-bottom: 0.7rem;
}
.hero-title {
  display: grid;
  gap: 0.2rem;
  line-height: 1.05;
}
.hero-title-main {
  font-size: clamp(2.25rem, 5.8vw, 4.5rem);
  letter-spacing: 0.03em;
  font-weight: 700;
}
.hero-title-sub {
  font-size: clamp(0.95rem, 1.7vw, 1.42rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8dcc0;
  font-weight: 600;
}
.reg-mark {
  font-size: 0.42em;
  line-height: 0;
  vertical-align: super;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 0.05em;
  opacity: 0.9;
}
.hero-copy p {
  color: #efe6d2;
}
.hero-copy .hero-stars {
  margin: 0 0 0.4rem;
  color: #f0ca6b;
  letter-spacing: 0.2em;
  font-size: 1.38rem;
  line-height: 1;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.8rem;
}
.hero-points li {
  color: #e8dcc0;
  font-size: 0.9rem;
  position: relative;
  padding-left: 0.95rem;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-strong);
}
.hero-media {
  position: relative;
  z-index: 1;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  height: 84vh;
  min-height: 420px;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08) translateY(var(--hero-shift, 0px));
  transition:
    opacity 0.55s ease,
    transform 0.2s linear;
  opacity: 0;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slider-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero-slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 8, 8, 0.45);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}
.hero-rating {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.rating-stars {
  background: rgba(8, 8, 8, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  padding: 0.42rem 0.52rem;
  color: #f0ca6b;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  line-height: 1;
}
.rating-booking {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(8, 8, 8, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  padding: 0.36rem 0.48rem;
  line-height: 1;
}
.booking-score {
  background: linear-gradient(135deg, #efc96b 0%, #d3a94f 100%);
  color: #1b1610;
  border-radius: 6px;
  padding: 0.2rem 0.36rem;
  font-weight: 800;
  font-size: 0.86rem;
}
.booking-name {
  color: #f4ebd7;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  text-transform: lowercase;
}

.eyebrow {
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}
h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 0.9rem;
}
.hero p {
  color: #f3eddd;
  font-size: 1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}
.hero-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-tags span {
  border: 1px solid rgba(215, 179, 90, 0.4);
  color: #f2e4c0;
  background: rgba(215, 179, 90, 0.08);
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn {
  border-radius: 999px;
  padding: 0.78rem 1.24rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, #f0ca6b 0%, #cca147 100%);
  color: #141414;
  box-shadow: 0 8px 24px rgba(215, 179, 90, 0.35);
}
.btn-primary:hover {
  color: #141414;
  box-shadow: 0 12px 28px rgba(215, 179, 90, 0.4);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-strong);
}

a.btn.btn-primary:hover {
  color: #141414;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: start center;
  padding-top: 8px;
  z-index: 2;
}
.scroll-cue span {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-strong);
  animation: scrollDot 1.35s ease-in-out infinite;
}

.sub-hero {
  padding: 6.1rem 0 2.4rem;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero {
  padding: 6.2rem 0 2rem;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}
.page-hero-copy {
  border: 1px solid var(--line-soft);
  background: linear-gradient(
    170deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero-copy p {
  color: var(--muted);
}
.page-hero-copy p.eyebrow {
  color: var(--gold-strong);
}

.page-hero-media {
  border: 1px solid var(--line-soft);
  overflow: hidden;
  min-height: 300px;
}
.page-hero-media .cover-img {
  height: 100%;
}
.section {
  padding: 4.6rem 0;
}
.section.alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.005)
  );
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-intro {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.hero-transition {
  position: relative;
  z-index: 5;
  margin-top: 28px;
  pointer-events: none;
}
.transition-panel {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}
.transition-panel span {
  color: #d9d2c1;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.transition-panel span:not(:last-child)::after {
  content: "•";
  color: var(--gold-strong);
  margin-left: 0.6rem;
}

.card-grid {
  display: grid;
  gap: 1.1rem;
}
.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}
.image-card {
  grid-column: span 2;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  min-height: 360px;
  display: grid;
  grid-template-rows: 220px 1fr;
}
.image-card:nth-child(1),
.image-card:nth-child(2) {
  grid-column: span 3;
}
.image-card-body {
  padding: 1rem 1rem 1.15rem;
}
.image-card h3 {
  margin-bottom: 0.45rem;
}
.image-card p {
  margin: 0;
  color: var(--muted);
}

.home-highlights-cta {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}
.editorial-image {
  min-height: 420px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.kraljevica-history-duo {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  min-height: 420px;
}
.kraljevica-history-duo picture {
  display: block;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}
.kraljevica-history-duo img.cover-img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}
.editorial-copy {
  border: 1px solid var(--line-soft);
  background: linear-gradient(
    170deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  padding: 1.4rem;
}

.site-map-section h2 {
  margin-bottom: 0.5rem;
}
.site-map-intro {
  margin: 0 0 1.1rem;
  max-width: 46rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.site-map-embed {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0a0a0a;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 10;
  min-height: 280px;
  max-height: 520px;
}
.site-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 280px;
}

.premium-metrics .metric {
  min-height: 130px;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.lifestyle-card {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
}
.lifestyle-card .cover-img {
  height: 210px;
}
.lifestyle-card > div {
  padding: 0.95rem 1rem 1.1rem;
}
.lifestyle-card h3 {
  margin-bottom: 0.35rem;
}
.lifestyle-card p {
  margin: 0;
  color: var(--muted);
}

.card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: var(--shadow);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 179, 90, 0.12);
  pointer-events: none;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.check-list {
  margin: 0;
  padding-left: 1.1rem;
}
.check-list li {
  margin-bottom: 0.45rem;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.metric {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1.05rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.008)
  );
}
.metric span {
  display: block;
  color: var(--gold-strong);
  font-weight: 800;
  font-size: 1.95rem;
}
.metric p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.gallery-grid picture {
  display: block;
}
.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid var(--line-soft);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 100;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-gallery-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: min(1180px, 100%);
}
.modal-gallery-main {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
}
.modal-gallery-img {
  display: block;
  max-width: min(1100px, 92vw);
  max-height: min(88vh, 820px);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.modal-gallery-counter {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9285;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(28, 28, 28, 0.92);
  color: #f0e8d8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.modal-nav-svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  pointer-events: none;
}
.modal-nav-prev {
  left: clamp(0.15rem, 2vw, 0.65rem);
}
.modal-nav-next {
  right: clamp(0.15rem, 2vw, 0.65rem);
}
.modal-nav:hover {
  border-color: rgba(215, 179, 90, 0.55);
  color: var(--gold-strong);
}
.modal-nav:focus-visible {
  outline: 2px solid rgba(215, 179, 90, 0.75);
  outline-offset: 2px;
}
.modal-nav[hidden] {
  display: none;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20, 20, 20, 0.85);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.badge-grid span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.44rem 0.86rem;
  background: rgba(255, 255, 255, 0.015);
  color: #dbd2be;
  font-weight: 600;
}

.amenities-lead {
  margin: 0.5rem 0 0;
  max-width: 52rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.amenities-catalog {
  column-count: 3;
  column-gap: clamp(1.25rem, 3vw, 2rem);
  column-fill: balance;
  margin-top: 1rem;
}
.amenities-category {
  break-inside: avoid;
  margin: 0 0 0.75rem;
  padding: 0;
}
.amenities-cat-head {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 0.2rem;
}
.amenities-cat-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 0.12rem;
  color: rgba(215, 179, 90, 0.9);
}
.amenities-cat-icon svg {
  display: block;
}
.amenities-cat-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #f2ead8;
  line-height: 1.3;
}
.amenities-cat-body {
  padding-left: calc(20px + 0.4rem);
}
.amenities-cat-lead {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #a8a095;
}
.amenities-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.38rem;
  margin: 0 0 0.22rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #ddd4c4;
}
.amenities-check {
  flex: 0 0 auto;
  margin-top: 0.18rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(215, 179, 90, 0.88);
  line-height: 1;
}
.amenities-item-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.45rem;
}
.amenities-item-text {
  font-weight: 500;
}
.amenities-badge {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: #b8b0a0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
}
@media (max-width: 960px) {
  .amenities-catalog {
    column-count: 2;
  }
}
@media (max-width: 620px) {
  .amenities-catalog {
    column-count: 1;
    column-gap: 0;
  }
  .amenities-category {
    margin-bottom: 0.65rem;
  }
}

/* Accommodation page: section rhythm & house rules */
.accommodation-page .page-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section.alt.accommodation-amenities {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, transparent 42%),
    #0c0c0c;
  border-top: 1px solid rgba(215, 179, 90, 0.14);
  border-bottom: none;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.85);
}

.accommodation-showcase {
  background: #050505;
  border-top: 2px solid rgba(215, 179, 90, 0.38);
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.accommodation-house-rules {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 50%), var(--bg);
  padding-top: 4.25rem;
  padding-bottom: 4.6rem;
}

/* Discover Kraljevica: same section rhythm as accommodation */
.kraljevica-page .page-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.kraljevica-page .kraljevica-surface-a {
  background: #050505;
  border-top: 2px solid rgba(215, 179, 90, 0.38);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.kraljevica-page .kraljevica-surface-b.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, transparent 42%),
    #0c0c0c;
  border-top: 1px solid rgba(215, 179, 90, 0.14);
  border-bottom: none;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.85);
}

.kraljevica-page .kraljevica-surface-c {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 50%), var(--bg);
  padding-top: 4.25rem;
  padding-bottom: 4.6rem;
}

.kraljevica-page .kraljevica-surface-history.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, transparent 42%),
    #0c0c0c;
  border-top: 1px solid rgba(215, 179, 90, 0.14);
  border-bottom: none;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.85);
  padding-top: 4.25rem;
  padding-bottom: 4.5rem;
}

.editorial-split--reverse {
  grid-template-columns: 1fr 1.05fr;
}

.house-rules-head {
  max-width: 38rem;
  margin-bottom: 1.85rem;
}
.house-rules-lead {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}
.house-rules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.house-rules-card {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.3rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.house-rules-card h3 {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215, 179, 90, 0.92);
}
.house-rules-time {
  margin: 0 0 0.5rem;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f2ead8;
  line-height: 1.2;
}
.house-rules-detail {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.52;
  color: #b8b0a0;
}
@media (max-width: 960px) {
  .house-rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .house-rules-grid {
    grid-template-columns: 1fr;
  }
}

.review {
  border-left: 3px solid var(--gold);
  padding: 0.45rem 0 0.45rem 1rem;
  margin-bottom: 0.9rem;
  color: #e8e1cf;
}

/* Room presentation + synced gallery (accommodation) */
.room-showcase-section {
  scroll-margin-top: 5rem;
}
.room-showcase-head {
  max-width: 720px;
  margin-bottom: 0.25rem;
}
.room-showcase-intro {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.room-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  margin-top: 1.35rem;
  min-width: 0;
}
.room-showcase-visual {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.room-showcase-stage-wrap {
  position: relative;
  min-width: 0;
}
.room-showcase-stage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0a0a0a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  min-width: 0;
}
.room-showcase-view {
  display: none;
  min-width: 0;
}
.room-showcase-view.is-active {
  display: block;
}
.room-showcase-view-inner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.45rem;
  min-width: 0;
}
.room-slide-stack {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #080808;
}
.room-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.room-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.room-slide picture {
  display: block;
  height: 100%;
}
.room-slide .room-stage-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.room-thumb-scroll {
  position: relative;
  min-width: 0;
  width: 100%;
  border-radius: 12px;
  box-shadow:
    inset 10px 0 12px -10px rgba(0, 0, 0, 0.55),
    inset -10px 0 12px -10px rgba(0, 0, 0, 0.55);
}
.room-thumb-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  align-items: center;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0.2rem 0.15rem 0.45rem;
  margin: 0 -0.15rem;
  scroll-padding-inline: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(215, 179, 90, 0.45) rgba(255, 255, 255, 0.06);
}
.room-thumb-row::-webkit-scrollbar {
  height: 7px;
}
.room-thumb-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}
.room-thumb-row::-webkit-scrollbar-thumb {
  background: rgba(215, 179, 90, 0.42);
  border-radius: 999px;
}
.room-thumb {
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.room-thumb img {
  display: block;
  width: 92px;
  height: 62px;
  object-fit: cover;
}
.room-thumb:hover {
  border-color: rgba(215, 179, 90, 0.35);
}
.room-thumb.is-active,
.room-thumb[aria-selected="true"] {
  border-color: rgba(215, 179, 90, 0.85);
  box-shadow: 0 0 0 1px rgba(215, 179, 90, 0.25);
}
.room-showcase-zoom-hint {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8274;
}
.room-showcase-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.45rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.15rem;
}
.room-showcase-tab {
  flex: 0 0 auto;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #e5dcc8;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.room-showcase-tab:hover {
  border-color: rgba(215, 179, 90, 0.45);
  color: #f6ead0;
}
.room-showcase-tab.is-active,
.room-showcase-tab[aria-selected="true"] {
  border-color: rgba(215, 179, 90, 0.65);
  background: rgba(215, 179, 90, 0.12);
  color: var(--gold-strong);
}
.room-showcase-panels {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 1.25rem 1.35rem 1.35rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  min-height: 280px;
  min-width: 0;
}
.room-showcase-panel h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
}
.room-showcase-panel > p {
  margin: 0 0 0.75rem;
  color: #e3dac8;
  line-height: 1.65;
  font-size: 0.95rem;
}
.room-showcase-bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.room-showcase-bullets li {
  margin-bottom: 0.35rem;
}

@media (max-width: 960px) {
  .room-showcase {
    grid-template-columns: 1fr;
  }
  .room-showcase-panels {
    min-height: 0;
  }
}
@media (max-width: 520px) {
  .room-slide-stack {
    aspect-ratio: 3 / 4;
  }
  .room-thumb img {
    width: 76px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .room-slide {
    transition: none;
  }
  .room-thumb-row {
    scroll-behavior: auto;
  }
}
.room-showcase-empty {
  margin: 0.75rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px dashed rgba(215, 179, 90, 0.35);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.room-showcase-empty code {
  font-size: 0.82em;
  color: #d8cfba;
}

.contact-form {
  display: grid;
  gap: 0.58rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: linear-gradient(
    170deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.008)
  );
  box-shadow: var(--shadow);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}
.contact-info-card h2 {
  margin-bottom: 0.85rem;
}
.contact-info-card .eyebrow {
  margin-bottom: 0.35rem;
}
.contact-info-lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 38ch;
}
.contact-rules-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-rules-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.65rem;
  color: #d9d2c1;
  line-height: 1.5;
}
.contact-rules-list li:last-child {
  margin-bottom: 0;
}
.contact-rules-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold-strong);
  box-shadow: 0 0 0 3px rgba(215, 179, 90, 0.15);
}
.contact-email-block {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(215, 179, 90, 0.22);
  background: rgba(215, 179, 90, 0.06);
}
.contact-email-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-strong);
}
.contact-email-value {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #f2e4c0;
  font-weight: 500;
  word-break: break-word;
  text-decoration: none;
}
.contact-email-value:hover {
  color: #fff5dc;
}
.contact-info-card--reach {
  display: flex;
  flex-direction: column;
}
.contact-email-cta {
  align-self: flex-start;
  margin-top: auto;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid var(--line-soft);
  background: #101010;
  color: var(--text);
  padding: 0.72rem 0.82rem;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--line);
  box-shadow: 0 0 0 3px rgba(215, 179, 90, 0.15);
}

.form-note {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted);
}
.form-status {
  margin: 0 0 0.45rem;
  border-radius: 10px;
  padding: 0.66rem 0.82rem;
  font-weight: 600;
}
.form-status.ok {
  background: rgba(67, 160, 71, 0.16);
  border: 1px solid rgba(67, 160, 71, 0.45);
}
.form-status.bad {
  background: rgba(230, 57, 70, 0.16);
  border: 1px solid rgba(230, 57, 70, 0.45);
}
.form-errors {
  border-radius: 10px;
  padding: 0.56rem 0.82rem;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.35);
}
.form-errors p {
  margin: 0.2rem 0;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.faq-list {
  display: grid;
  gap: 0.82rem;
}
.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.82rem 0.98rem;
  background: rgba(255, 255, 255, 0.01);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-list p {
  color: var(--muted);
  margin: 0.68rem 0 0.2rem;
}

.site-footer {
  margin-top: 0;
  padding: 2.4rem 0 1.4rem;
  background:
    radial-gradient(
      circle at 20% -30%,
      rgba(215, 179, 90, 0.18),
      transparent 50%
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.018) 0px,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  width: min(980px, 92%);
  margin: 0 auto;
  text-align: left;
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: start;
  gap: 1.2rem;
}
.footer-brand-block {
  display: grid;
  justify-items: start;
}
.footer-logo {
  width: 112px;
  height: auto;
  margin: 0 0 0.2rem;
  opacity: 0.95;
}
.footer-brand-line {
  margin: 0.35rem 0 0;
  color: #e8dfc9;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
}
.footer-contact-block {
  display: grid;
  justify-items: start;
}
.footer-kicker {
  margin: 0 0 0.25rem;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.42rem;
}
.footer-social-block {
  display: grid;
  justify-items: end;
}
.footer-address {
  margin: 0.5rem 0 0;
  color: #d9d2c1;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(215, 179, 90, 0.28);
  background: rgba(215, 179, 90, 0.06);
  color: #f2e4c0;
  padding: 0.37rem 0.66rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: none;
  gap: 0.38rem;
}
.footer-contact-list a svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.footer-contact-list a:hover {
  border-color: rgba(215, 179, 90, 0.66);
  background: rgba(215, 179, 90, 0.14);
  color: #f6e8c5;
}
.footer-social {
  margin-top: 0.2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.34rem;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #e8dfc9;
}
.footer-social a:hover {
  border-color: rgba(215, 179, 90, 0.6);
  background: rgba(215, 179, 90, 0.12);
  color: #f4dfac;
}
.footer-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.footer-links {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.22rem;
  justify-items: end;
}
.footer-links a {
  color: #d8cfba;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}
.footer-links a:hover {
  color: var(--gold-strong);
}
.guest-reviews-strip {
  padding: 2.6rem 0 2.4rem;
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(215, 179, 90, 0.12),
      transparent 45%
    ),
    linear-gradient(180deg, #0c0c0c 0%, #090909 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.guest-reviews-strip-head {
  max-width: 640px;
  margin-bottom: 1.4rem;
}
.guest-reviews-strip-lead {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.guest-reviews-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.guest-review-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.1rem 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.guest-review-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}
.guest-review-score {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-strong);
  letter-spacing: 0.04em;
}
.guest-review-score span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c9b896;
  margin-left: 0.12rem;
}
.guest-review-excerpt {
  margin: 0;
  flex: 1 1 auto;
  color: #e3d9c4;
  font-size: 0.88rem;
  line-height: 1.55;
}
.guest-review-meta {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a79f8c;
}
.guest-reviews-strip-cta {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
}

.reviews-page .reviews-summary-line {
  margin: 0.75rem 0 0;
  color: #e8dcc0;
  font-size: 0.92rem;
}
.reviews-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
  position: relative;
}
.reviews-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(215, 179, 90, 0.45),
    rgba(255, 255, 255, 0.08)
  );
}
.reviews-timeline-item {
  position: relative;
  padding: 0 0 1.75rem 2.65rem;
}
.reviews-timeline-item:last-child {
  padding-bottom: 0;
}
.reviews-timeline-marker {
  position: absolute;
  left: 2px;
  top: 0.55rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f4dfac, #c49a3c 55%, #7a5c22);
  border: 2px solid #0b0b0b;
  box-shadow: 0 0 0 2px rgba(215, 179, 90, 0.25);
}
.reviews-timeline-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.05rem 1.2rem 1.15rem;
  background: rgba(255, 255, 255, 0.02);
}
.reviews-timeline-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.45rem;
}
.reviews-timeline-date {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a79f8c;
}
.reviews-timeline-score {
  font-weight: 700;
  color: var(--gold-strong);
  font-size: 0.95rem;
}
.reviews-timeline-score span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #c9b896;
}
.reviews-timeline-title {
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
}
.reviews-timeline-guest {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #d8cfba;
}
.reviews-timeline-text {
  margin: 0;
  color: #efe6d2;
  font-size: 0.92rem;
  line-height: 1.65;
}
.reviews-host-reply {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.85rem;
  border-left: 3px solid rgba(215, 179, 90, 0.55);
  background: rgba(215, 179, 90, 0.06);
  border-radius: 0 10px 10px 0;
  font-size: 0.86rem;
  color: #e8dcc0;
  line-height: 1.55;
}
.reviews-host-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin-bottom: 0.35rem;
}
.reviews-disclaimer {
  margin: 2rem 0 0;
  font-size: 0.82rem;
  text-align: center;
  color: var(--muted);
}

.copyright {
  text-align: center;
  grid-column: 1 / -1;
  color: #a79f8c;
  font-size: 0.78rem;
  margin: 0.9rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroStaggerIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(18px);
    opacity: 0;
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .card-grid.three,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split,
  .card-grid.two,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-media {
    min-height: 260px;
  }
  .feature-mosaic,
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
  }
  .image-card,
  .image-card:nth-child(1),
  .image-card:nth-child(2) {
    grid-column: auto;
  }
  .editorial-split {
    grid-template-columns: 1fr;
  }
}

/* Hamburger + drawer: nav staje na užim ekranima prije nego što se stavke preklapaju */
@media (max-width: 1200px) {
  .site-header .container.nav-wrap {
    padding-left: 4%;
    padding-right: 4%;
    position: relative;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .brand img {
    width: 60px;
  }
  .nav-social {
    display: none;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 0.8rem 4%;
    border-bottom: 1px solid var(--line-soft);
    background: #0b0b0b;
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    border-radius: 16px;
    padding: 0.55rem;
  }
  .site-nav a {
    width: 100%;
    padding: 0.54rem 0.7rem;
  }
  .site-nav a::after,
  .site-nav a.active::after,
  .site-nav a:hover::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .gallery-grid,
  .card-grid.three,
  .metric-cards {
    grid-template-columns: 1fr;
  }
  .hero-transition {
    margin-top: 0;
  }
  .transition-panel {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }
  .transition-panel span:not(:last-child)::after {
    display: none;
  }
  .feature-mosaic,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .guest-reviews-cards {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0;
    text-align: center;
  }
  .footer-brand-block,
  .footer-contact-block,
  .footer-social-block {
    justify-items: center;
  }
  .footer-logo {
    width: 104px;
    margin: 0 auto 0.2rem;
  }
  .footer-contact-list,
  .footer-social {
    justify-content: center;
  }
  .footer-links {
    justify-items: center;
  }

  .hero {
    min-height: auto;
    padding: 0 0 1.8rem;
    background:
      radial-gradient(
        circle at 20% 70%,
        rgba(215, 179, 90, 0.1),
        transparent 38%
      ),
      #090909;
  }
  .page-hero {
    padding: 1rem 0;
  }
  .page-hero-copy {
    padding: 1rem;
  }
  .hero-split {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    min-height: auto;
  }
  .hero-split::before,
  .hero-split::after {
    display: none;
  }
  .hero-copy {
    order: 2;
    position: relative;
    z-index: 4;
    max-width: 100%;
    margin: 0 4%;
    padding: 1.05rem 0 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }
  .hero-title {
    gap: 0.12rem;
  }
  .hero-title-main {
    font-size: clamp(2rem, 13vw, 3.2rem);
  }
  .hero-title-sub {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
  }
  .hero-copy p {
    font-size: 0.92rem;
  }
  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.55rem;
    margin-top: 0.8rem;
  }
  .hero-points li {
    font-size: 0.78rem;
    line-height: 1.35;
    padding-left: 0.75rem;
  }
  .hero-points li::before {
    width: 4px;
    height: 4px;
    top: 0.48rem;
  }
  .hero-actions {
    margin-top: 1rem;
    gap: 0.55rem;
  }
  .hero-actions .btn {
    flex: 1 1 100%;
    padding: 0.72rem 1rem;
  }
  .hero-tags {
    margin-top: 0.8rem;
    gap: 0.35rem;
  }
  .hero-tags span {
    font-size: 0.62rem;
    padding: 0.25rem 0.48rem;
  }
  .hero-media {
    order: 1;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 62vh;
    min-height: 390px;
  }
  .hero-media::after {
    content: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.18) 38%,
        rgba(0, 0, 0, 0.78) 100%
      ),
      radial-gradient(
        circle at 18% 85%,
        rgba(215, 179, 90, 0.2),
        transparent 42%
      );
  }
  .hero-slide {
    transform: scale(1);
  }
  .hero-slider-controls {
    right: 14px;
    bottom: 14px;
    top: auto;
    z-index: 5;
  }
  .hero-slider-btn {
    width: 34px;
    height: 34px;
  }
  .hero-rating {
    left: 14px;
    bottom: 14px;
    top: auto;
    z-index: 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > .eyebrow,
  .hero-copy > .hero-stars,
  .hero-copy > .hero-title,
  .hero-copy > p,
  .hero-copy > .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 420px) {
  .hero-media {
    height: 58vh;
    min-height: 350px;
  }
  .hero-copy {
    margin: 0 4%;
    padding-top: 0.95rem;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .hero-tags span:nth-child(3) {
    display: none;
  }
  .rating-stars {
    display: none;
  }
  .booking-name {
    font-size: 0.72rem;
  }
}
