:root {
  --bg: #f7f4ef;
  --paper: #ffffff;
  --text: #1f1f1f;
  --muted: #756d65;
  --brown: #2f241d;
  --brown-soft: #7d654c;
  --sand: #ded3c6;
  --line: rgba(47, 36, 29, 0.16);
  --red: #b71c2b;
  --shadow: 0 24px 60px rgba(47, 36, 29, 0.09);
  --container: 1400px;
  --ease: 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.home-page {
  background:
    linear-gradient(rgba(24, 20, 17, 0.26), rgba(24, 20, 17, 0.2)),
    url("../../uvodna_gore2.webp") center / cover fixed;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
  width: 100%;
}

iframe,
video {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

[id] {
  scroll-margin-top: 110px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--brown-soft);
  outline-offset: 4px;
}

.container {
  margin: 0 auto;
  width: min(var(--container), 90vw);
}

.section {
  padding: clamp(72px, 9vw, 130px) 0;
}

.section.alt {
  background: var(--sand);
}

.home-page .section {
  background: rgba(247, 244, 239, 0.82);
  backdrop-filter: blur(2px);
}

.home-page .section.alt {
  background: rgba(222, 211, 198, 0.86);
}

.eyebrow {
  color: var(--brown-soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: "Alegreya", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

p {
  color: var(--muted);
}

.lead {
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
  max-width: 760px;
  padding-top: 13px;
  padding-bottom: 23px;
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

.header {
  color: #fff;
  left: 0;
  position: fixed;
  top: 0;
  transition: background var(--ease), box-shadow var(--ease), color var(--ease);
  width: 100%;
  z-index: 20;
}

.header.scrolled,
.header.nav-active {
  background: rgba(247, 244, 239, 0.94);
  box-shadow: 0 8px 24px rgba(47, 36, 29, 0.08);
  color: var(--text);
}

.home-header {
  background: linear-gradient(rgba(20, 16, 13, 0.14), rgba(20, 16, 13, 0));
}

.subpage-header {
  background: linear-gradient(rgba(20, 16, 13, 0.28), rgba(20, 16, 13, 0));
}

.topbar {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  font-size: 0.78rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 12px 0;
  text-transform: uppercase;
}

.topbar-left,
.top-contact,
.language-toggle {
  align-items: center;
  display: flex;
}

.topbar-left {
  gap: 18px;
}

.top-contact {
  gap: 9px;
}

.fa-icon {
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}

.language-menu {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 18px;
  position: relative;
}

.language-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  gap: 8px;
  letter-spacing: 0.08em;
  min-height: 28px;
  padding: 0;
  text-transform: uppercase;
}

.language-toggle svg {
  fill: currentColor;
  height: 6px;
  margin-left: 3px;
  transition: transform var(--ease);
  width: 11px;
}

.language-menu.open .language-toggle svg {
  transform: rotate(180deg);
}

.language-dropdown {
  background: rgba(47, 36, 29, 0.42);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(20, 16, 13, 0.16);
  color: rgba(255, 255, 255, 0.92);
  min-width: 78px;
  opacity: 0;
  padding: 6px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  transform: translateY(-6px);
  transition: opacity var(--ease), transform var(--ease);
}

.language-menu.open .language-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-dropdown button {
  background: transparent;
  border: 0;
  color: inherit;
  display: block;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  text-align: left;
  width: 100%;
}

.language-dropdown button:hover,
.language-dropdown button.active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.header.scrolled .topbar,
.header.nav-active .topbar {
  border-bottom-color: var(--line);
}

.header.scrolled .language-menu,
.header.nav-active .language-menu {
  border-left-color: var(--line);
}

.top-reserve {
  border: 1px solid currentColor;
  padding: 8px 16px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.top-reserve:hover {
  background: #fff;
  border-color: #fff;
  color: var(--brown);
}

.header.scrolled .top-reserve:hover,
.header.nav-active .top-reserve:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

.navbar {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  padding: 22px 0;
}

.home-logo-row {
  display: flex;
  justify-content: center;
  padding: 18px 0 14px;
  max-height: 142px;
  overflow: hidden;
  transition: max-height var(--ease), opacity var(--ease), padding var(--ease);
}

.home-logo {
  align-items: center;
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.home-logo span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.25;
}

.home-logo strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: none;
  transition: font-size var(--ease);
}

.home-header.scrolled .home-logo-row {
  max-height: 54px;
  opacity: 0.92;
  padding: 6px 0 4px;
}

.home-header.scrolled .home-logo span {
  display: none;
}

.home-header.scrolled .home-logo strong {
  font-size: 2rem;
}

.home-navbar {
  grid-template-columns: 1fr auto;
  padding-top: 27px;
}

.home-navbar .logo {
  display: none;
}

.home-navbar .site-nav {
  justify-self: center;
}

.subpage-header .navbar {
  grid-template-columns: 1fr auto 1fr;
  padding-top: 24px;
}

.subpage-header .home-logo-row {
  justify-content: center;
}

.subpage-header .home-logo {
  align-items: center;
}

.subpage-header .navbar .logo {
  pointer-events: none;
  visibility: hidden;
}

.subpage-header .site-nav {
  justify-self: center;
}

.subpage-header .hamburger {
  justify-self: end;
}

.subpage-header .nav-list {
  background: rgba(47, 36, 29, 0.1);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.subpage-header.scrolled .nav-list,
.subpage-header.nav-active .nav-list {
  background: transparent;
  backdrop-filter: none;
  border-color: transparent;
}

.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  position: relative;
  z-index: 22;
}

.nav-list {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.5vw, 38px);
  justify-content: center;
  padding: 10px 22px;
  position: relative;
}

.nav-list a {
  color: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  opacity: 1;
  padding: 7px 0;
  position: relative;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}

.nav-list a::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity var(--ease), transform var(--ease);
  width: 100%;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a.active::after,
.nav-list a[aria-current="page"]::after {
  opacity: 0.85;
  transform: scaleX(1);
}

.nav-list a.active,
.nav-list a[aria-current="page"] {
  font-weight: 600;
}

.home-navbar .nav-list {
  background: rgba(47, 36, 29, 0.1);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.header.scrolled .home-navbar .nav-list,
.header.nav-active .home-navbar .nav-list {
  background: transparent;
  backdrop-filter: none;
  border-color: transparent;
}

.header.scrolled .nav-list a,
.header.nav-active .nav-list a {
  text-shadow: none;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.hamburger {
  align-items: center;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  display: none;
  height: 42px;
  justify-content: center;
  position: relative;
  width: 42px;
  z-index: 23;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  position: relative;
  transition: transform var(--ease);
  width: 18px;
}

.hamburger span::before {
  position: absolute;
  top: -6px;
}

.hamburger span::after {
  position: absolute;
  top: 6px;
}

.header.nav-active .hamburger span {
  background: transparent;
}

.header.nav-active .hamburger span::before {
  top: 0;
  transform: rotate(45deg);
}

.header.nav-active .hamburger span::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  align-items: center;
  background: var(--brown);
  border: 1px solid var(--brown);
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 48px;
  padding: 13px 28px;
  text-transform: uppercase;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.btn:hover {
  background: var(--brown-soft);
  border-color: var(--brown-soft);
  transform: translateY(-2px);
}

.btn.light {
  background: #fff;
  border-color: #fff;
  color: var(--brown);
}

.btn.ghost {
  background: transparent;
  color: var(--brown);
}

.header .btn.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.header.scrolled .btn.ghost,
.header.nav-active .btn.ghost {
  border-color: var(--brown);
  color: var(--brown);
}

.hero {
  align-items: center;
  background-image: linear-gradient(rgba(24, 20, 17, 0.34), rgba(24, 20, 17, 0.26)), url("../../uvodna_gore2.webp");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: 92vh;
  padding: 190px 0 90px;
  position: relative;
  text-align: center;
}

.home-page .hero {
  background-image: linear-gradient(rgba(24, 20, 17, 0.36), rgba(24, 20, 17, 0.2));
}

.home-page .hero::after {
  content: none;
}

.home-page .hero .hero-content,
.home-page .hero .scroll-note {
  z-index: 1;
}

.hero.small {
  min-height: 62vh;
}

.subpage-hero {
  background-image: linear-gradient(rgba(24, 20, 17, 0.44), rgba(24, 20, 17, 0.3)), url("../../uvodna_gore2.webp");
  min-height: 68vh;
  overflow: hidden;
}

.subpage-hero::after {
  background: linear-gradient(
    to bottom,
    rgba(24, 20, 17, 0) 0%,
    rgba(55, 42, 33, 0.18) 34%,
    rgba(112, 88, 67, 0.42) 68%,
    #baa895 100%
  );
  bottom: 0;
  content: "";
  height: clamp(150px, 22vw, 260px);
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.subpage-hero + .section {
  background: linear-gradient(
    to bottom,
    #baa895 0%,
    rgba(190, 174, 154, 0.58) 22%,
    rgba(220, 211, 199, 0.38) 54%,
    rgba(247, 244, 239, 0.94) 86%,
    #f7f4ef 100%
  );
  margin-top: -1px;
}

.hero-content {
  margin: 0 auto;
  padding-top: 150px;
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.hero-title-row {
  align-items: center;
  display: flex;
  gap: clamp(18px, 4vw, 42px);
  justify-content: center;
}

.hero-title-row::before,
.hero-title-row::after {
  background: rgba(255, 255, 255, 0.55);
  content: "";
  display: block;
  height: 1px;
  width: min(170px, 18vw);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-top: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
}

.hero-booking {
  background: rgba(222, 211, 198, 0.92);
  color: var(--brown);
  display: inline-flex;
  font-size: 0.86rem;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-top: 42px;
  min-width: min(680px, 86vw);
  padding: 18px 34px;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease);
}

.hero-booking:hover {
  background: #fff;
  transform: translateY(-2px);
}

.booking-strip {
  background: linear-gradient(
    to bottom,
    rgba(24, 20, 17, 0.2) 0%,
    rgba(24, 20, 17, 0.12) 26%,
    rgba(255, 255, 255, 0.12) 68%,
    rgba(255, 255, 255, 0.24) 100%
  );
  margin-top: 0;
  padding: 0 0 120px;
  position: relative;
  text-align: center;
  z-index: 3;
}

.booking-strip a {
  background: rgba(222, 211, 198, 0.96);
  color: var(--brown-soft);
  display: inline-flex;
  font-size: 0.88rem;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-top: -14px;
  min-width: min(720px, 88vw);
  padding: 19px 34px;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.booking-strip a:hover {
  background: #fff;
  color: var(--brown);
  transform: translateY(-2px);
}

.probjan-intro {
  background:
    linear-gradient(rgba(247, 244, 239, 0.62), rgba(247, 244, 239, 0.62)),
    url("../../uvodna_gore2.webp");
  background-position: center;
  background-size: cover;
  padding: clamp(84px, 10vw, 140px) 0;
}

.home-page .probjan-intro {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(255, 255, 255, 0.42) 28%,
    rgba(255, 255, 255, 0.78) 50%,
    #fff 62%,
    #fff 82%,
    rgba(255, 255, 255, 0.96) 100%
  );
  backdrop-filter: none;
  position: relative;
}

.probjan-feature {
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 900px;
}

.probjan-feature img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.probjan-copy {
  margin: 58px auto 0;
  max-width: 920px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.home-page .probjan-copy::before {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(255, 255, 255, 0) 72%);
  content: "";
  height: 260px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: -92px;
  transform: translateX(-50%);
  width: min(980px, 100vw);
  z-index: -1;
}

.probjan-copy p {
  margin: 0 auto 18px;
  max-width: 760px;
}

.section-line-title {
  align-items: center;
  display: flex;
  gap: clamp(18px, 4vw, 36px);
  justify-content: center;
  margin-bottom: 32px;
}

.section-line-title.left {
  justify-content: flex-start;
  text-align: left;
}

.section-line-title::before,
.section-line-title::after {
  background: rgba(47, 36, 29, 0.25);
  content: "";
  display: block;
  height: 1px;
  width: min(130px, 16vw);
}

.section-line-title.left::after {
  display: none;
}

.section-line-title.left::before {
  display: none;
}

.compact {
  padding-block: clamp(46px, 6vw, 76px);
}

.home-page .section.compact {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.78) 42%,
    rgba(47, 36, 29, 0.18) 100%
  );
  backdrop-filter: none;
}

.home-page .section.compact .amenity {
  border-top-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.home-banner {
  align-items: center;
  background:
    linear-gradient(rgba(24, 20, 17, 0.24), rgba(24, 20, 17, 0.24)),
    url("../../uvodna_gore2.webp");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 270px;
  text-align: center;
}

.home-page .home-banner {
  background: linear-gradient(
    to bottom,
    rgba(47, 36, 29, 0.18) 0%,
    rgba(24, 20, 17, 0.46) 48%,
    rgba(24, 20, 17, 0.58) 100%
  );
}

.home-banner.nature {
  background-image:
    linear-gradient(rgba(24, 20, 17, 0.24), rgba(24, 20, 17, 0.24)),
    url("../../uvodna_gore2.webp");
}

.home-page .home-banner.nature {
  background-image: linear-gradient(
    to bottom,
    #000 0%,
    rgba(18, 14, 11, 0.9) 38%,
    rgba(48, 38, 30, 0.72) 78%,
    rgba(88, 70, 54, 0.52) 100%
  );
}

.home-page .bohinj-detail {
  background: linear-gradient(
    to bottom,
    rgba(88, 70, 54, 0.52) 0%,
    rgba(130, 108, 84, 0.36) 28%,
    rgba(190, 174, 154, 0.36) 58%,
    rgba(242, 236, 228, 0.68) 76%,
    #fff 94%,
    #fff 100%
  );
  backdrop-filter: none;
}

.home-page .section.alt.bohinj-activities {
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 22%,
    rgba(242, 236, 228, 0.66) 44%,
    rgba(120, 98, 77, 0.42) 72%,
    rgba(12, 10, 8, 0.82) 100%
  );
  backdrop-filter: none;
}

.home-page .bohinj-activities h2,
.home-page .bohinj-activities h3,
.home-page .bohinj-activities p {
  color: rgba(255, 255, 255, 0.9);
}

.home-page .bohinj-activities .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.home-page .bohinj-activities .center h2 {
  color: var(--text);
  text-shadow: none;
}

.home-page .bohinj-activities .center .eyebrow {
  color: var(--brown-soft);
}

.home-page .bohinj-activities .center {
  transform: translateY(-100px);
}

.home-page .bohinj-detail h2,
.home-page .bohinj-detail p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.24);
}

.home-page .bohinj-detail .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .bohinj-activities .card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.home-banner h2 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  letter-spacing: 0.08em;
}

.home-banner.nature h2 {
  transform: translateY(95px);
}

.probjan-rooms {
  background: var(--sand);
  padding: 52px 0 86px;
}

.home-page .probjan-rooms {
  background: linear-gradient(
    to bottom,
    rgba(24, 20, 17, 0.58) 0%,
    rgba(18, 14, 11, 0.74) 50%,
    rgba(0, 0, 0, 0.96) 86%,
    #000 100%
  );
  backdrop-filter: none;
}

.probjan-mosaic {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
}

.probjan-mosaic img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
}

.probjan-mosaic .large {
  grid-column: span 2;
  grid-row: span 2;
}

.probjan-room-copy {
  margin: 42px auto 0;
  max-width: 820px;
  padding: 30px 24px 0;
  text-align: center;
}

.probjan-room-copy p {
  margin-bottom: 8px;
}

.home-page .probjan-room-copy p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.home-page .probjan-room-copy .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.scroll-note {
  display: grid;
  font-size: 0.74rem;
  height: 122px;
  letter-spacing: 0.08em;
  place-items: center;
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  text-align: center;
  text-transform: uppercase;
  top: 43%;
  width: 122px;
}

.scroll-note svg {
  fill: transparent;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.5))
    drop-shadow(0 4px 16px rgba(0, 0, 0, 0.32));
  inset: 0;
  position: absolute;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.scroll-note span {
  line-height: 1.35;
  position: relative;
  transform: translateY(-8px);
  z-index: 1;
}

.intro-grid,
.split-grid {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 86px);
  grid-template-columns: 1.05fr 0.95fr;
}

.image-frame {
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-frame img,
.card img,
.gallery img {
  object-fit: cover;
}

.image-frame.tall img {
  aspect-ratio: 4 / 5;
}

.image-frame.wide img {
  aspect-ratio: 16 / 10;
}

.about-history-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 36, 29, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(28px, 5vw, 62px);
}

.about-history-copy {
  align-self: center;
}

.about-history-image {
  overflow: hidden;
}

.about-history-image img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-history-note {
  border-top: 1px solid rgba(47, 36, 29, 0.14);
  display: grid;
  gap: 18px;
  grid-column: 1 / -1;
  padding-top: 30px;
  text-align: center;
}

.about-history-note p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 960px;
}

.amenities {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
}

.amenity {
  border-top: 1px solid var(--line);
  color: var(--brown);
  padding-top: 18px;
}

.editorial-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, 1fr);
}

.editorial-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.editorial-grid .wide {
  grid-column: span 3;
}

.editorial-grid .large {
  grid-column: span 3;
  grid-row: span 2;
}

.editorial-grid .large img {
  height: 100%;
}

.cards {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--paper);
  height: 100%;
  overflow: hidden;
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 28px;
}

.meta {
  color: var(--brown-soft);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin: 10px 0 8px;
  text-transform: uppercase;
}

.banner {
  align-items: center;
  background-image: linear-gradient(rgba(24, 20, 17, 0.28), rgba(24, 20, 17, 0.28)), url("../../uvodna_gore2.webp");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: 330px;
  text-align: center;
}

.michelin {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  height: 166px;
  justify-content: center;
  letter-spacing: 0.14em;
  margin: 36px 0;
  text-align: center;
  text-transform: uppercase;
  width: 166px;
}

.michelin strong {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0;
}

.cta {
  background: var(--brown);
  color: #fff;
  padding: clamp(76px, 9vw, 120px) 0;
  text-align: center;
}

.home-page .cta {
  background: linear-gradient(
    to bottom,
    rgba(12, 10, 8, 0.82) 0%,
    rgba(8, 7, 6, 0.9) 76%,
    #000 98%,
    #000 100%
  );
  backdrop-filter: none;
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
  margin: 20px auto 10px;
}

.gallery {
  column-count: 4;
  column-gap: 16px;
}

.gallery-intro {
  padding-bottom: 64px;
}

.gallery-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.gallery-jump-nav a {
  border: 1px solid rgba(47, 36, 29, 0.2);
  color: var(--brown);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  min-width: 150px;
  padding: 13px 20px;
  text-transform: uppercase;
}

.gallery-jump-nav a:hover {
  background: var(--brown);
  color: #fff;
}

.gallery-heading {
  margin-bottom: 34px;
  text-align: center;
}

.gallery-heading h2 {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-gallery {
  column-count: initial;
  display: grid;
  gap: 14px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.chapter-gallery .gallery-item {
  margin-bottom: 0;
}

.chapter-gallery .gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.chapter-gallery .gallery-item.wide {
  grid-column: span 2;
}

.chapter-gallery .gallery-item.tall {
  grid-row: span 2;
}

.chapter-gallery img {
  aspect-ratio: 1 / 1;
  display: block;
  height: 100%;
  width: 100%;
}

.chapter-gallery .large img,
.chapter-gallery .tall img {
  aspect-ratio: 3 / 4;
}

.chapter-gallery .wide img {
  aspect-ratio: 16 / 10;
}

.gallery-instagram {
  text-align: center;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
}

.gallery img {
  cursor: zoom-in;
}

.rooms-showcase {
  background: #f7f4ef;
}

.room-feature {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: 1.1fr 0.9fr;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
  width: min(var(--container), 90vw);
}

.room-feature + .room-feature {
  border-top: 1px solid rgba(47, 36, 29, 0.12);
}

.room-feature.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.room-feature.reverse .room-gallery {
  order: 2;
}

.room-feature.reverse .room-copy {
  order: 1;
}

.room-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.room-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.room-gallery .large {
  aspect-ratio: 4 / 3;
  grid-column: span 3;
}

.room-count {
  background: rgba(47, 36, 29, 0.88);
  bottom: 16px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 8px 13px;
  position: absolute;
  right: 16px;
  text-transform: uppercase;
}

.room-size {
  color: var(--brown-soft);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  margin: 16px 0 18px;
  text-transform: uppercase;
}

.room-amenities {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0;
}

.room-amenities li {
  border-top: 1px solid var(--line);
  color: var(--brown);
  padding-top: 12px;
}

.rooms-pricing {
  background: linear-gradient(to bottom, rgba(247, 244, 239, 0.92), #fff);
}

.room-price-tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 42px;
}

.room-price-tab {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(47, 36, 29, 0.18);
  color: var(--brown);
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  min-width: 150px;
  padding: 15px 22px;
  text-transform: uppercase;
}

.room-price-tab:hover,
.room-price-tab.active {
  background: rgba(47, 36, 29, 0.92);
  color: #fff;
}

.room-price-tab-panels {
  margin-top: 28px;
}

.room-price-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 36, 29, 0.12);
  grid-column: 1 / -1;
  margin-top: 0;
  padding: clamp(24px, 4vw, 42px);
}

.room-price-panel[hidden] {
  display: none;
}

.room-price-panel .center {
  margin: 0 auto;
  max-width: 760px;
}

.room-price-panel .center p:not(.eyebrow) {
  color: var(--muted);
}

.room-price-panel .price-table-wrap {
  margin-top: 34px;
}

.room-price-table {
  min-width: 560px;
}

.room-price-notes {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.room-price-disclaimer {
  margin-top: 26px;
}

.room-price-important {
  margin-top: 24px;
  max-width: none;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 42px 0 52px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--brown);
  padding: 10px 18px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brown);
  color: #fff;
}

.detail-list,
.menu-list {
  display: grid;
  gap: 18px;
}

.detail-list li,
.menu-item {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-bottom: 18px;
}

.info-columns {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4px;
}

.rooms-info .info-columns {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.rooms-info .info-panel {
  text-align: center;
}

.rooms-info .check-list {
  justify-items: center;
}

.rooms-info .check-list li {
  padding-left: 0;
}

.rooms-info .check-list li::before {
  display: none;
}

.info-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 36, 29, 0.12);
  padding: clamp(26px, 3vw, 38px);
}

.info-panel h3 {
  margin-bottom: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  background: var(--brown-soft);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 0.78em;
  width: 5px;
}

.price-table-wrap {
  margin-top: 54px;
  overflow-x: auto;
}

.price-table {
  background: rgba(255, 255, 255, 0.74);
  border-collapse: collapse;
  box-shadow: var(--shadow);
  min-width: 760px;
  width: 100%;
}

.price-table th,
.price-table td {
  border: 1px solid rgba(47, 36, 29, 0.13);
  padding: 16px 18px;
  text-align: center;
}

.price-table th {
  background: rgba(47, 36, 29, 0.9);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table td:first-child {
  color: var(--brown);
  font-weight: 500;
  text-align: left;
}

.price-notes {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.9fr 0.85fr 1.45fr;
  margin-top: 44px;
}

.price-note {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(47, 36, 29, 0.12);
  padding: clamp(24px, 3vw, 34px);
}

.price-note h3 {
  margin-bottom: 20px;
}

.compact-list li {
  gap: 18px;
}

.compact-list strong {
  color: var(--brown);
  text-align: right;
}

.price-disclaimer {
  margin: 36px auto 0;
  max-width: 980px;
  text-align: center;
}

.price-disclaimer p {
  margin-bottom: 10px;
}

.important-note {
  background: rgba(47, 36, 29, 0.88);
  color: #fff;
  margin: 34px auto 0;
  max-width: 980px;
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
}

.important-note ul {
  display: grid;
  gap: 10px;
}

.important-note li,
.important-note p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-ready {
  background: #fff;
}

.bentral-reservation-section {
  background: #fff;
}

.bentral-booking-grid {
  align-items: stretch;
}

.bentral-booking-actions,
.bentral-form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bentral-panel {
  box-shadow: var(--shadow);
}

.bentral-panel .success-message {
  margin-top: 18px;
}

.bentral-embed-wrap {
  margin-top: clamp(54px, 7vw, 92px);
}

.bentral-embed-header {
  margin: 0 auto 30px;
  max-width: 900px;
  text-align: center;
}

.bentral-embed {
  background:
    linear-gradient(rgba(47, 36, 29, 0.06), rgba(47, 36, 29, 0.06)),
    #fff;
  border: 1px solid rgba(47, 36, 29, 0.12);
  box-shadow: var(--shadow);
  min-height: 620px;
  overflow: hidden;
}

.bentral-embed iframe {
  border: 0;
  display: block;
  min-height: 620px;
  width: 100%;
}

.bentral-widgets-section {
  background: #fff;
}

.bentral-widget-stack {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  margin-top: clamp(44px, 6vw, 74px);
  min-width: 0;
}

.bentral-widget-stack.two-columns {
  gap: 16px;
  grid-template-areas: "calendar booking";
  grid-template-columns: repeat(2, calc((100% - 16px) / 2));
  justify-content: space-between;
}

.bentral-widget-card {
  background: rgba(247, 244, 239, 0.9);
  border: 1px solid rgba(47, 36, 29, 0.12);
  box-shadow: var(--shadow);
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.bentral-price-card {
  grid-column: 1;
}

.bentral-calendar-card {
  grid-column: 2;
}

.bentral-widget-card-booking {
  grid-column: 3;
}

.bentral-widget-stack.two-columns .bentral-calendar-card {
  grid-area: calendar;
  grid-column: 1;
  justify-self: stretch;
}

.bentral-widget-stack.two-columns .bentral-widget-card-booking {
  grid-area: booking;
  grid-column: 2;
  justify-self: stretch;
}

.bentral-widget-stack.single-column {
  grid-template-columns: minmax(0, 1fr);
}

.bentral-widget-stack.single-column .bentral-widget-card-booking {
  grid-column: 1;
}

.reservation-hub-stack {
  grid-template-areas:
    "calendar booking";
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reservation-hub-stack .bentral-calendar-card {
  grid-area: calendar;
  grid-column: auto;
}

.reservation-hub-stack .bentral-widget-card-booking {
  grid-area: booking;
  grid-column: auto;
}

.all-units-calendar-widget {
  gap: 10px;
}

.bentral-widget-copy {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
}

.bentral-widget-copy .eyebrow {
  flex-basis: 100%;
  margin-bottom: 0;
}

.bentral-widget-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.bentral-widget-card iframe {
  background: #fff;
  border: 0;
  display: block;
  min-height: 80px;
  min-width: 100%;
  width: 100%;
}

.bentral-widget-card-booking iframe {
  min-height: 760px;
}

.bentral-script-widget {
  background: #fff;
  min-height: 360px;
  min-width: 0;
  padding: clamp(18px, 3vw, 32px);
}

.bentral-price-widget {
  color: var(--muted);
  min-height: 280px;
}

.bentral-calendar-widget {
  min-height: 360px;
}

.rooms-calendar-widget {
  display: grid;
  gap: 4px;
}

.room-calendar-item {
  border-bottom: 1px solid rgba(47, 36, 29, 0.12);
  padding-bottom: 4px;
}

.room-calendar-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.room-calendar-item h4 {
  color: var(--brown);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.bentral-booking-widget {
  min-height: 520px;
}

.bentral-script-widget > * {
  max-width: 100%;
}

.bentral-script-widget iframe {
  max-width: 100%;
  min-width: 100%;
}

.contact-request-section {
  background: var(--bg);
}

.contact-panel {
  box-shadow: var(--shadow);
}

.booking-panel {
  background: rgba(247, 244, 239, 0.88);
  border: 1px solid rgba(47, 36, 29, 0.12);
  padding: clamp(28px, 4vw, 44px);
}

.menu-item p {
  max-width: 720px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.form-honeypot {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  min-height: 52px;
  padding: 14px 16px;
  width: 100%;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

input.field-warning,
textarea.field-warning {
  background: #fff7f3;
  border-color: #b45a42;
  color: #7a3424;
}

input.field-warning::placeholder,
textarea.field-warning::placeholder {
  color: #9d3e27;
  opacity: 1;
}

.full {
  grid-column: 1 / -1;
}

.map-placeholder {
  align-items: center;
  background: #e8e1d8;
  color: var(--muted);
  display: flex;
  min-height: 360px;
  justify-content: center;
  margin-top: 28px;
}

.reservation-contact {
  background: #fff;
}

.reservation-contact-list {
  margin-top: 32px;
}

.reservation-contact-list a {
  color: var(--brown);
}

.reservation-map {
  min-height: 420px;
}

.reservation-map iframe {
  border: 0;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 420px;
  width: 100%;
}

.success-message {
  background: #e7f3e9;
  border: 1px solid #bbd8bf;
  color: #345b3c;
  display: none;
  margin-top: 18px;
  padding: 16px;
}

.success-message.show {
  display: block;
}

.success-message.error {
  background: #f7e7df;
  border-color: #e0b7a6;
  color: #7a3424;
}

.form-popup {
  align-items: center;
  background: rgba(47, 36, 29, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  line-height: 1.55;
  max-width: min(420px, calc(100vw - 34px));
  opacity: 0;
  padding: 18px 20px;
  pointer-events: none;
  position: fixed;
  right: 22px;
  top: 22px;
  transform: translateY(-12px);
  transition: opacity var(--ease), transform var(--ease);
  z-index: 120;
}

.form-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.form-popup[data-type="success"] {
  background: rgba(52, 91, 60, 0.96);
}

.form-popup[data-type="error"] {
  background: rgba(122, 52, 36, 0.96);
}

.form-popup button {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  flex: 0 0 auto;
  font-size: 1.25rem;
  height: 34px;
  line-height: 1;
  width: 34px;
}

.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: none;
  padding: 86px 0 0;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  align-items: start;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.footer h4 {
  color: #fff;
  font-size: 1.85rem;
  margin-bottom: 16px;
}

.footer a {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  transition: color var(--ease), transform var(--ease);
}

.footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer .bentral-footer-logo {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  gap: 10px;
  margin-top: 10px;
  padding: 9px 12px 9px 10px;
  width: fit-content;
}

.footer .bentral-footer-logo:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: none;
}

.bentral-mark {
  align-items: center;
  background: #fff;
  color: #1d252c;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  width: 28px;
}

.bentral-word {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: grid;
  height: 38px;
  margin: 0;
  place-items: center;
  width: 38px;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: none;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  display: flex;
  font-size: 0.82rem;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.04em;
  margin: 58px auto 0;
  max-width: 520px;
  padding-top: 24px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  display: inline;
  margin: 0;
}

.footer-bottom a:hover {
  color: #fff;
  transform: none;
}

.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  align-items: center;
  background: rgba(20, 16, 13, 0.92);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 80px;
  position: fixed;
  z-index: 100;
}

.lightbox img {
  max-height: 82vh;
  max-width: 82vw;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .nav-list {
    gap: clamp(12px, 1.4vw, 22px);
    padding-inline: 16px;
  }

  .nav-list a {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 1100px) {
  .cards.four,
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .home-header .home-logo-row {
    justify-content: flex-start;
    padding: 16px 0 0;
  }

  .home-header .container {
    position: relative;
  }

  .home-header .home-logo {
    align-items: flex-start;
  }

  .subpage-header .home-logo-row {
    justify-content: center;
    padding: 16px 0 8px;
  }

  .subpage-header .home-logo {
    align-items: center;
  }

  .home-logo strong {
    font-size: 2.25rem;
  }

  .navbar {
    grid-template-columns: 1fr auto auto;
  }

  .subpage-header .navbar {
    grid-template-columns: 1fr auto;
  }

  .subpage-header .site-nav {
    justify-self: stretch;
  }

  .home-navbar {
    grid-template-columns: 1fr auto auto;
    padding-top: 12px;
  }

  .home-header .home-navbar {
    padding-top: 0;
  }

  .home-navbar .hamburger,
  .subpage-header .hamburger {
    justify-self: end;
  }

  .hamburger {
    display: flex;
    grid-column: -2 / -1;
    justify-self: end;
    margin-left: auto;
  }

  .home-header .hamburger {
    position: absolute;
    right: 0;
    top: 35px;
    z-index: 30;
  }

  .nav-actions {
    display: flex;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding: 10px 16px;
  }

  .site-nav {
    background: var(--bg);
    box-shadow: -14px 0 40px rgba(47, 36, 29, 0.12);
    color: var(--text);
    height: 100vh;
    padding: 110px 32px 32px;
    position: fixed;
    right: -310px;
    top: 0;
    transition: right var(--ease);
    width: 300px;
    z-index: 21;
  }

  .site-nav.active {
    right: 0;
  }

  .nav-list {
    align-items: flex-start;
    flex-direction: column;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .nav-list a {
    text-shadow: none;
  }

  .intro-grid,
  .split-grid,
  .about-history-card,
  .bentral-widget-stack,
  .room-feature,
  .room-feature.reverse,
  .cards,
  .cards.two,
  .cards.four,
  .info-columns,
  .price-notes {
    grid-template-columns: 1fr;
  }

  .room-feature.reverse .room-gallery,
  .room-feature.reverse .room-copy {
    order: initial;
  }

  .bentral-price-card,
  .bentral-calendar-card,
  .bentral-widget-card-booking {
    grid-column: 1;
  }

  .reservation-hub-stack {
    grid-template-areas:
      "calendar"
      "booking";
    grid-template-columns: 1fr;
  }

  .bentral-widget-stack.two-columns {
    display: flex;
    flex-direction: column;
    grid-template-areas:
      "calendar"
      "booking";
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .bentral-widget-card {
    width: 100%;
  }

  .bentral-calendar-card,
  .bentral-widget-card-booking {
    grid-column: auto;
  }

  .bentral-widget-copy {
    padding: 22px 20px 18px;
  }

  .bentral-widget-copy h3 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .bentral-script-widget {
    min-height: auto;
    overflow-x: auto;
    padding: 14px;
  }

  .bentral-script-widget iframe,
  .bentral-script-widget table {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }

  .bentral-calendar-card .bentral-script-widget {
    padding: 10px;
  }

  .bentral-widget-card-booking .bentral-script-widget {
    padding: 0;
  }

  .rooms-calendar-widget {
    gap: 8px;
  }

  .room-calendar-item h4 {
    font-size: 1.25rem;
  }

  .probjan-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .scroll-note {
    display: none;
  }

  .hero {
    min-height: 78vh;
    padding-top: 140px;
  }

  .home-header + main .hero {
    padding-top: 210px;
  }

  .gallery {
    column-count: 2;
  }

  .chapter-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .chapter-gallery .gallery-item.large,
  .chapter-gallery .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 34px, var(--container));
  }

  .topbar-left {
    gap: 12px;
  }

  .language-menu {
    padding-left: 12px;
  }

  .amenities,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-wrap: wrap;
    text-align: center;
  }

  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-grid .wide,
  .editorial-grid .large {
    grid-column: span 2;
  }

  .hero-title-row::before,
  .hero-title-row::after,
  .section-line-title::before,
  .section-line-title::after {
    display: none;
  }

  .hero-booking {
    min-width: 100%;
    padding-inline: 18px;
  }

  .booking-strip a {
    min-width: calc(100vw - 34px);
    padding-inline: 18px;
  }

  .probjan-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .probjan-mosaic .large {
    grid-column: span 2;
  }

  .home-banner {
    min-height: 210px;
  }

  .gallery {
    column-count: 1;
  }

  .chapter-gallery {
    grid-template-columns: 1fr;
  }

  .chapter-gallery .gallery-item.large,
  .chapter-gallery .gallery-item.wide {
    grid-column: span 1;
  }

  .chapter-gallery .gallery-item.tall {
    grid-row: span 1;
  }

  .room-amenities {
    grid-template-columns: 1fr;
  }

  .form-popup {
    left: 17px;
    right: 17px;
    top: 16px;
    max-width: none;
  }

  .detail-list li,
  .menu-item {
    display: block;
  }

  .bentral-widget-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .bentral-widget-card iframe {
    min-height: 80px;
  }

  .bentral-widget-card-booking iframe {
    min-height: 700px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

.lightbox-arrow {
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: flex;
  font-size: 42px;
  height: 62px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.25s ease;
  width: 62px;
  z-index: 101;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 9999;
}

@media (max-width: 620px) {
  .lightbox-arrow {
    font-size: 30px;
    height: 48px;
    width: 48px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    font-size: 34px;
  }
}
.activity-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
}

.activity-icon svg {
    width: 90px;
    height: 90px;
    color: #6f8b6d;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Športne aktivnosti */

.activities-section .card {
    text-align: center;
}

.activities-section .card-body {
    background: transparent;
    text-align: center;
    padding: 2rem 1.5rem;
}

.activities-section .card-body h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.activities-section .card-body p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.activities-section .btn {
    margin: 0 auto;
}

.bohinj-activities .card {
  text-align: center;
}

.activities-section .activity-icon {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f6f4ef;
    border-radius: 18px 18px 0 0;
}

.activities-section .activity-icon svg {
    width: 90px;
    height: 90px;
    color: #6c7d63;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.activities-section .card {
    overflow: hidden;
}
