@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ================= LOADER ================= */

.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity .8s ease, visibility .8s ease;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

@media (max-width: 900px) {

  .site-header {
    position: relative;
  }

  .logo-link {
    display: none;
  }

    .site-header {
    padding-left: 34px;
    padding-right: 34px;
  }

  .hamburger {
    left: 22px;
  }

  .language-switcher {
    right: 22px;
  }

}

.loader img {
  width: 90px;
  animation:
    loaderIntro 1.6s ease forwards,
    loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderIntro {
  0% {
    opacity: 0;
    transform: scale(.7);
    filter: blur(10px);
  }

  60% {
    opacity: 1;
    transform: scale(1.04);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* Fade in */
@keyframes loaderFade {
  0% {
    opacity: 0;
    transform: scale(.85);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gentle pulse */
@keyframes loaderPulse {
  0%,100% {
    transform: scale(1);
    opacity: .85;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* Hidden state */
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* ================= SCROLL ANIMATIONS ================= */

.reveal {
  opacity: 0;
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal-left {
  transform: translateX(-55px);
}

.reveal-right {
  transform: translateX(55px);
}

.reveal-up {
  transform: translateY(55px);
}

.reveal.show {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-down {
  transform: translateY(-45px);
}

.reveal-delay-1 {
  transition-delay: .12s;
}

.reveal-delay-2 {
  transition-delay: .22s;
}

.reveal-delay-3 {
  transition-delay: .32s;
}

:root {
  --cream: #e9dfd1;
  --cream-light: #f3eadf;
  --brown: #241205;
  --orange: #AB260D;
  --muted: #7e6c5f;
}

html,
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--brown);
  font-family: 'Jost', sans-serif;
}

.language-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;

  border: 1px solid rgba(171,38,13,.25);
  background: rgba(243,234,223,.45);

  color: var(--brown);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;

  opacity: .45;
  transition: .25s ease;
}

.language-switcher a:hover {
  opacity: .8;
  border-color: var(--orange);
}

.language-switcher a.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  opacity: 1;
}

.section-label,
.homepage-label {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .55em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.section-label {
  text-align: center;
}

.section-label.left {
  text-align: left;
}

.page-placeholder {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

/* ================= FOOTER PREMIUM ================= */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--brown);
  color: var(--cream);
  padding: 72px 8% 130px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("podstrani/slike/logotip.png") center 35% / 430px no-repeat;
  opacity: .035;
  pointer-events: none;
  z-index: 0;
}

.footer-top,
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-top {
  text-align: center;
  margin-bottom: 52px;
}

.footer-top img {
  width: 60px;
  margin-bottom: 16px;
}

.footer-top h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.footer-top h2 span {
  color: var(--orange);
}

.footer-main {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 90px;
  max-width: 1180px;
  margin: 0 auto 52px;
}

.footer-column small {
  display: block;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-column a,
.footer-column p {
  display: block;
  color: rgba(233,223,209,.7);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.footer-column a:hover {
  color: white;
}

.footer-btn {
  display: inline-block !important;
  margin-top: 18px;
  background: var(--orange);
  color: white !important;
  padding: 14px 24px;
  font-size: 11px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(233,223,209,.55);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(233,223,209,.55);
  text-decoration: none;
  margin-left: 22px;
}

.footer-bottom a:hover {
  color: white;
}

/* obdrži spodnji gozd/oranament */
.footer-forest {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 95px;
  z-index: 1;
  opacity: .18;
  pointer-events: none;
}

.footer-forest::before,
.footer-forest::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 120%;
  background-repeat: repeat-x;
}

.footer-forest::before {
  left: -5%;
  height: 95px;
  background-size: 150px 95px;
  background-image:
    linear-gradient(135deg, transparent 45%, rgba(233,223,209,.45) 46% 54%, transparent 55%),
    linear-gradient(45deg, transparent 45%, rgba(233,223,209,.45) 46% 54%, transparent 55%);
  background-position: 0 20px, 38px 20px;
}

.footer-forest::after {
  left: -10%;
  height: 70px;
  opacity: .7;
  background-size: 110px 70px;
  background-image:
    linear-gradient(135deg, transparent 45%, rgba(233,223,209,.35) 46% 54%, transparent 55%),
    linear-gradient(45deg, transparent 45%, rgba(233,223,209,.35) 46% 54%, transparent 55%);
  background-position: 0 22px, 28px 22px;
}

@media (max-width: 950px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-contact {
  margin-left: auto;
  align-items: flex-end;
  text-align: right;
}

.footer-contact .footer-btn {
  margin-top: 28px;
}

.footer-main .footer-column:nth-child(2),
.footer-main .footer-column:nth-child(3) {
  min-width: 180px;
}

@media (max-width: 900px) {

  .footer-main {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
    margin-left: 0;
  }

  .footer-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ================= HEADER ================= */

.site-header {
  height: 90px;
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  align-items: center;
  padding: 0 8%;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}

.site-header.scrolled {
  height: 78px;
  background: var(--cream);
  box-shadow: 0 8px 28px rgba(58, 29, 8, .10);
  backdrop-filter: blur(12px);
}

.logo {
  width: 55px;
  transition: width .3s ease, transform .3s ease;
}

.site-header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 58px;
}

.site-header nav a {
  color: var(--brown);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: opacity .2s ease;
}

.site-header nav a:hover {
  opacity: 0.6;
}

.site-header .btn-outline {
  justify-self: end;
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s ease;
}

.site-header .btn-outline:hover,
.site-header.scrolled .btn-outline {
  background: var(--orange);
  color: white;
}

.site-header.scrolled .logo {
  width: 42px;
}

.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 17px 38px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--orange);
  color: white;
}

/* ================= MAIN ================= */

main {
  min-height: 60vh;
}

/* ================= FOOTER PREMIUM ================= */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--brown);
  color: rgba(233,223,209,.72);
  padding: 85px 5% 34px;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  background: url('podstrani/slike/logotip.png') center/contain no-repeat;
  opacity: .035;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.45fr .9fr .8fr .8fr;
  gap: 70px;
  align-items: start;
}

.footer-brand {
  text-align: left;
}

.footer-brand img {
  width: 58px;
  margin-bottom: 24px;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-style: italic;
  font-weight: 500;
  line-height: .9;
  margin-bottom: 24px;
  color: var(--cream);
}

.footer-brand h2 span {
  color: var(--orange);
}

.footer-brand p {
  max-width: 380px;
  line-height: 1.7;
  color: rgba(233,223,209,.68);
}

.footer-column small {
  display: block;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-column a,
.footer-column p {
  display: block;
  color: rgba(233,223,209,.72);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.footer-column a:hover {
  color: white;
}

.footer-contact .footer-btn {
  margin-top: 28px;
}

.footer-btn {
  display: inline-block;
  width: fit-content;
  background: var(--orange);
  color: white !important;
  padding: 15px 24px;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: .25s ease;
}

.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(171,38,13,.25);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(233,223,209,.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(233,223,209,.52);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(233,223,209,.52);
  text-decoration: none;
  margin-left: 22px;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 1000px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding: 70px 8% 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 18px;
  }
}

/* -------------- SEKCIJA DOMOV -------------- */

.hero {
  height: 100%;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(233,223,209,.73), rgba(0, 0, 0, 0.25)),
    url('podstrani/slike/goricko_ozadje.jpg') center/cover;
}

.hero-content {
  max-width: 560px;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.05;
  font-style: italic;
  letter-spacing: 6px;
  margin-bottom: 34px;
}

.hero h1 span,
.section h2 span,
.gallery h2 span,
.anika-content h2 span,
.highlight span {
  color: var(--orange);
}

.hero p {
  max-width: 400px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 550; /* semibold */
  font-size: 20px;
  line-height: 1.45;
  color: #5e3f2d;
  margin-top: 40px;
  margin-bottom: 40px;
}

.actions {
  display: flex;
  gap: 18px;
}

.btn {
  display: inline-block;
  padding: 16px 28px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(216, 102, 60, .25);
}

.btn.dark {
  background: var(--brown);
  box-shadow: none;
}

.dark-band {
  background: var(--brown);
  color: var(--cream);
  padding: 70px 8%;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center;
}

.dark-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 54px);
  font-style: italic;
  font-weight: 500;
}

.dark-band p {
  color: rgba(233,223,209,.75);
  line-height: 1.7;
}

.apartments-home {
  position: relative;
  padding-top: 115px;
  padding-bottom: 115px;
  background:
    radial-gradient(circle at 15% 20%, rgba(171,38,13,.08), transparent 28%),
    radial-gradient(circle at 85% 85%, rgba(58,29,8,.08), transparent 30%),
    var(--cream);
}

.apartments-home-intro {
  max-width: 660px;
  margin: -35px auto 65px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: #5e3f2d;
}

.apartments-home .cards {
  gap: 44px;
  align-items: stretch;
}

.apartments-home .apartment-card {
  position: relative;
  overflow: hidden;
  border: 0;
  background: rgba(243,234,223,.86);
  box-shadow: 0 30px 75px rgba(58,29,8,.16);
}

.apartments-home .apartment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  z-index: 4;
}

.apartments-home .apartment-card::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: 58px;
  width: 360px;
  height: 360px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .12;
  pointer-events: none;
  z-index: 1;
  transition: transform .6s ease, opacity .4s ease;
}

.apartments-home .apartment-card.dzaboka::after {
  background-image: url('podstrani/slike/dzaboka.png');
}

.apartments-home .apartment-card.gruska::after {
  background-image: url('podstrani/slike/gruska.png');
}

.apartments-home .apartment-card.cesnja::after {
  background-image: url('podstrani/slike/cresnja.png');
}

.apartments-home .apartment-card:hover::after {
  transform: translate(-26px, -18px) scale(1.08);
  opacity: .18;
}

.apartments-home .card-image {
  height: 245px;
  position: relative;
  z-index: 2;
}

.apartments-home .card-body {
  position: relative;
  z-index: 2;
  min-height: 330px;
  padding: 38px 38px 0;
}

.apartments-home .letter {
  font-size: 62px;
  color: rgba(36,18,5,.16);
  margin-bottom: 8px;
}

.apartments-home .card-body h3 {
  font-size: 34px;
  line-height: 1;
}

.apartments-home .card-body small {
  color: var(--orange);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 8px;
  margin-bottom: 30px;
}

.apartments-home .card-body hr {
  max-width: 72%;
  margin-bottom: 25px;
}

.apartments-home .features {
  font-size: 16px;
  line-height: 1.8;
  color: #5e3f2d;
}

.apartments-home .card-link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 20px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--brown);
  color: var(--cream);
}

.apartments-home .card-link span {
  color: var(--orange);
  font-size: 20px;
  transition: transform .25s ease;
}

.apartments-home .card-link:hover span {
  transform: translateX(8px);
}

.apartments-home-cta {
  text-align: center;
  margin-top: 55px;
}

.apartments-home-cta .btn-outline {
  background: transparent;
  padding: 18px 42px;
}

@media (max-width: 900px) {
  .apartments-home .cards {
    grid-template-columns: 1fr;
  }

  .apartments-home .card-body {
    min-height: 310px;
  }
}

.anika-hero {
  padding: 110px 8%;
  background: var(--cream);
}

.anika-panel {
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(58,29,8,.20);
  border: 1px solid rgba(58,29,8,.14);
  background:
    linear-gradient(90deg, rgba(233,223,209,.95), rgba(233,223,209,.28)),
    url('podstrani/slike/anika-hero.jpg') center/cover;
}

.anika-panel::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 12px solid rgba(216,102,60,.18);
  border-radius: 50%;
}

.anika-content {
  max-width: 580px;
  z-index: 2;
  background: rgba(243,234,223,.82);
  padding: 46px;
  border-left: 4px solid var(--orange);
}

.anika-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 68px);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 30px;
}

.anika-content p {
  line-height: 1.75;
  margin-bottom: 30px;
  color: #5e3f2d;
}

.highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  margin: 24px 0 30px;
  color: var(--brown);
}

.gallery {
  padding: 90px 8%;
  background: #ded2c2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 260px 260px;
  gap: 22px;
  margin-top: 45px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(58,29,8,.15);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

#celotna_galerija {
  margin-left: auto;
  margin-left: auto;
}

footer {
  padding: 54px 8%;
  background: var(--brown);
  color: rgba(233,223,209,.7);
  text-align: center;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .cards,
  .dark-band,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: none;
  }

  .gallery-grid img {
    height: 280px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .anika-panel {
    padding: 28px;
    min-height: auto;
  }

  .anika-content {
    padding: 30px;
  }
}


.gallery-page {
  padding: 150px 8% 100px;
  background: var(--cream);
}

.gallery-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.gallery-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 6vw, 86px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}

.gallery-hero h1 span {
  color: var(--orange);
}

.gallery-hero p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #5e3f2d;
}

.gallery-masonry {
  columns: 3 280px;
  column-gap: 24px;
}

.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--cream-light);
  box-shadow: 0 24px 55px rgba(58,29,8,.18);
  border: 1px solid rgba(58,29,8,.12);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(.9);
}

.empty-gallery {
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  margin-top: 60px;
}

.gallery-item {
  border: 0;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--cream-light);
  box-shadow: 0 24px 55px rgba(58,29,8,.18);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(.9);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 10, 4, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.image-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  transform: scale(.94);
  transition: transform .28s ease;
}

.image-modal.open img {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 28px;
  right: 34px;
  border: none;
  background: transparent;
  color: white;
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
  padding: 0;
}

.modal-close:hover {
  color: var(--orange);
  transform: rotate(90deg) scale(1.1);
}

.apartma-page {
  padding: 140px 8% 80px;
}

.apartma-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
}

.apartma-content {
  max-width: 700px;
  margin-top: 40px;
}

.apartma-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.apartma-content p {
  font-size: 18px;
  line-height: 1.6;
}

.apartment-detail-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 8% 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.apartment-detail-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .65fr;
  gap: 70px;
  align-items: center;
}

.apartment-detail-text {
  max-width: 680px;
}

.apartment-detail-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(72px, 9vw, 130px);
  font-style: italic;
  line-height: .9;
  color: var(--brown);
  margin-bottom: 34px;
}

.apartment-detail-text p {
  max-width: 560px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #5e3f2d;
  margin-bottom: 42px;
}

.apartment-detail-actions {
  display: flex;
  gap: 18px;
}

.apartment-detail-card {
  background: rgba(243,234,223,.88);
  border: 1px solid rgba(58,29,8,.14);
  box-shadow: 0 30px 70px rgba(58,29,8,.22);
  padding: 46px;
  backdrop-filter: blur(10px);
}

.apartment-detail-card span {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  margin-bottom: 20px;
}

.apartment-detail-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 22px;
}

.apartment-detail-card p {
  color: #5e3f2d;
  line-height: 1.7;
  margin-bottom: 22px;
}

.apartment-detail-card strong {
  font-size: 18px;
  color: var(--brown);
}

.single-apartment {
  background: var(--cream);
}

.single-apartment-hero {
  min-height: 100vh;
  padding: 150px 8% 90px;
  display: grid;
  grid-template-columns: 1.1fr 360px;
  gap: 70px;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.single-apartment-content {
  max-width: 700px;
}

.single-label {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .55em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.single-apartment-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(70px, 9vw, 130px);
  font-style: italic;
  line-height: .9;
  margin-bottom: 34px;
  color: var(--brown);
}

.single-apartment-content p {
  max-width: 560px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #5e3f2d;
  margin-bottom: 40px;
}

.single-actions {
  display: flex;
  gap: 18px;
}

.single-info-card {
  background: rgba(243,234,223,.9);
  padding: 46px;
  box-shadow: 0 30px 70px rgba(58,29,8,.22);
  border: 1px solid rgba(58,29,8,.12);
  backdrop-filter: blur(8px);
}

.single-info-card span {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 12px;
  margin-bottom: 20px;
}

.single-info-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
}

.single-info-card p {
  color: #5e3f2d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.single-features {
  padding: 100px 8%;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  background: var(--cream);
}

.single-features-text h2,
.single-checkin h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 68px);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 24px;
}

.single-features-text p {
  color: #5e3f2d;
  line-height: 1.7;
  font-size: 18px;
}

.single-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.single-feature {
  background: var(--cream-light);
  padding: 22px 24px;
  box-shadow: 0 16px 35px rgba(58,29,8,.10);
  border: 1px solid rgba(58,29,8,.12);
}

.single-checkin {
  margin: 0 8% 100px;
  padding: 60px;
  text-align: center;
  background: var(--brown);
  color: var(--cream);
}

.single-checkin p {
  color: rgba(233,223,209,.8);
  font-size: 18px;
}

.apartments-page {
  padding: 150px 8% 110px;
  background: var(--cream);
}

.apartments-intro {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.apartments-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 7vw, 100px);
  font-style: italic;
  font-weight: 500;
  line-height: .95;
  margin-bottom: 30px;
}

.apartments-intro h1 span {
  color: var(--orange);
}

.apartments-intro p {
  max-width: 620px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: #5e3f2d;
}

.apartments-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.apartment-row {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 60px;
  align-items: center;
}

.apartment-row:nth-child(even) {
  grid-template-columns: .85fr 1fr;
}

.apartment-row:nth-child(even) .apartment-row-image {
  order: 2;
}

.apartment-row:nth-child(even) .apartment-row-content {
  order: 1;
}

.apartment-row-image {
  height: 520px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(58,29,8,.18);
  border: 1px solid rgba(58,29,8,.12);
}

.apartment-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.apartment-row:hover .apartment-row-image img {
  transform: scale(1.06);
}

.apartment-row-content {
  background: rgba(243,234,223,.72);
  padding: 54px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 20px 55px rgba(58,29,8,.10);
}

.apartment-row-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 24px;
}

.apartment-row-content p {
  font-size: 18px;
  line-height: 1.75;
  color: #5e3f2d;
  margin-bottom: 28px;
}

.apartment-row-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.apartment-row-meta span {
  background: var(--cream);
  border: 1px solid rgba(58,29,8,.12);
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .apartment-row,
  .apartment-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .apartment-row:nth-child(even) .apartment-row-image,
  .apartment-row:nth-child(even) .apartment-row-content {
    order: initial;
  }

  .apartment-row-image {
    height: 340px;
  }

  .apartment-row-content {
    padding: 34px;
  }
}

.apartment-card {
  position: relative;
  overflow: hidden;
  background: var(--cream-light);
}

/* pseudo element = slika v ozadju */
.apartment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: right -40px bottom -40px;
  background-size: 320px;
  opacity: 0.11; /* to kontrolira “masko” */
  pointer-events: none;
}

/* posamezne slike */
.apartment-card.dzaboka::after {
  background-image: url('podstrani/slike/dzaboka.png');
}

.apartment-card.gruska::after {
  background-image: url('podstrani/slike/gruska.png');
}

.apartment-card.cesnja::after {
  background-image: url('podstrani/slike/cresnja.png');
}

.apartment-card::after {
  mask-image: linear-gradient(to top left, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top left, black 40%, transparent 100%);
}

/* ================= PARALLAX SADJE ================= */

.apartment-row-content {
  position: relative;
  overflow: hidden;
}

.apartment-row-content > * {
  position: relative;
  z-index: 2;
}

.apartment-row-content::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -40px;
  width: 360px;
  height: 360px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.13;
  pointer-events: none;
  z-index: 1;
  transition: transform .6s ease, opacity .4s ease;
}

.apartment-row-content.dzaboka::after {
  background-image: url('podstrani/slike/dzaboka.png');
}

.apartment-row-content.gruska::after {
  background-image: url('podstrani/slike/gruska.png');
}

.apartment-row-content.cesnja::after {
  background-image: url('podstrani/slike/cresnja.png');
}

.apartment-row:hover .apartment-row-content::after {
  transform: translate(-28px, -22px) scale(1.08);
  opacity: 0.18;
}

.home-apartments {
  padding: 115px 8%;
  background:
    radial-gradient(circle at 15% 20%, rgba(171,38,13,.07), transparent 28%),
    radial-gradient(circle at 85% 85%, rgba(36,18,5,.07), transparent 30%),
    var(--cream);
}

.home-apartments-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.home-apartments-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 82px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin: 16px 0 24px;
}

.home-apartments-head h2 span {
  color: var(--orange);
}

.home-apartments-head p {
  max-width: 620px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: #5e3f2d;
}

.home-apartment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.home-apartment-card {
  position: relative;
  overflow: hidden;
  background: rgba(243,234,223,.88);
  box-shadow: 0 30px 75px rgba(58,29,8,.16);
  transition: transform .28s ease, box-shadow .28s ease;
}

.home-apartment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 90px rgba(58,29,8,.22);
}

.home-apartment-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--orange);
  z-index: 4;
}

.home-apartment-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: 0px;
  width: 360px;
  height: 360px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .11;
  pointer-events: none;
  z-index: 1;
  transition: transform .6s ease, opacity .4s ease;
}

.home-apartment-card.dzaboka::after {
  background-image: url('podstrani/slike/dzaboka.png');
}

.home-apartment-card.gruska::after {
  background-image: url('podstrani/slike/gruska.png');
}

.home-apartment-card.cesnja::after {
  background-image: url('podstrani/slike/cresnja.png');
}

.home-apartment-card:hover::after {
  transform: translate(-26px, -18px) scale(1.08);
  opacity: .18;
}

.home-apartment-image {
  height: 245px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.home-apartment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.home-apartment-card:hover .home-apartment-image img {
  transform: scale(1.06);
}

.home-apartment-body {
  position: relative;
  z-index: 2;
  min-height: 350px;
  padding: 38px 38px 86px;
}

.home-apartment-letter {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  line-height: 1;
  color: rgba(36,18,5,.16);
  margin-bottom: 8px;
}

.home-apartment-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.home-apartment-body small {
  display: block;
  color: var(--orange);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 30px;
}

.home-apartment-body hr {
  border: 0;
  border-top: 1px solid rgba(58,29,8,.18);
  max-width: 72%;
  margin-bottom: 25px;
}

.home-apartment-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #5e3f2d;
}

.home-apartment-body a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--brown);
  color: var(--cream);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-apartment-body a span {
  color: var(--orange);
  font-size: 20px;
  transition: transform .25s ease;
}

.home-apartment-body a:hover span {
  transform: translateX(8px);
}

.home-apartments-cta {
  text-align: center;
  margin-top: 58px;
}

.home-apartments-cta a {
  display: inline-block;
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 18px 44px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: .25s ease;
}

.home-apartments-cta a:hover {
  background: var(--orange);
  color: white;
}

@media (max-width: 900px) {
  .home-apartment-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= HOMEPAGE GALERIJA CLEAN ================= */

.homepage-gallery-section {
  padding: 120px 8%;
  background: #ded2c2;
}

.homepage-gallery-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.homepage-label {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .55em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.homepage-gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 82px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}

.homepage-gallery-header h2 span {
  color: var(--orange);
}

.homepage-gallery-header p {
  max-width: 560px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: #5e3f2d;
}

.homepage-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 280px 280px;
  gap: 24px;
}

.homepage-gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(58,29,8,.18);
  border: 1px solid rgba(58,29,8,.12);
  background: var(--cream-light);
}

.homepage-gallery-item:first-child {
  grid-row: span 2;
}

.homepage-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .35s ease;
}

.homepage-gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(.88);
}

.homepage-gallery-button {
  text-align: center;
  margin-top: 55px;
}

.homepage-gallery-button a {
  display: inline-block;
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 18px 44px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: .25s ease;
}

.homepage-gallery-button a:hover {
  background: var(--orange);
  color: white;
}

@media (max-width: 900px) {
  .homepage-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .homepage-gallery-item,
  .homepage-gallery-item:first-child {
    grid-row: auto;
    height: 280px;
  }
}

/* ================= HOMEPAGE GLAMPING ================= */

.home-glamping {
  padding: 120px 8%;
  background:
    linear-gradient(180deg, rgba(233,223,209,.92), rgba(233,223,209,.98)),
    var(--cream);
}

.home-glamping-head {
  max-width: 780px;
  margin: 0 auto 70px;
  text-align: center;
}

.home-glamping-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 82px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}

.home-glamping-head h2 span {
  color: var(--orange);
}

.home-glamping-head p {
  max-width: 620px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: #5e3f2d;
}

.home-glamping-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
}

.glamping-card {
  background: rgba(243,234,223,.88);
  box-shadow: 0 30px 75px rgba(58,29,8,.15);
  border: 1px solid rgba(58,29,8,.12);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.glamping-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 90px rgba(58,29,8,.22);
}

.glamping-image {
  height: 360px;
  overflow: hidden;
}

.glamping-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.glamping-card:hover .glamping-image img {
  transform: scale(1.06);
}

.glamping-content {
  position: relative;
  padding: 44px;
  border-left: 4px solid var(--orange);
}

.glamping-content > span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.glamping-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 22px;
}

.glamping-content p {
  color: #5e3f2d;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.glamping-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.glamping-meta div {
  background: var(--cream);
  border: 1px solid rgba(58,29,8,.12);
  padding: 18px 20px;
}

.glamping-meta strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 4px;
}

.glamping-meta small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.glamping-content a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--brown);
  color: var(--cream);
  text-decoration: none;
  padding: 20px 24px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.glamping-content a span {
  color: var(--orange);
  font-size: 20px;
  transition: transform .25s ease;
}

.glamping-content a:hover span {
  transform: translateX(8px);
}

@media (max-width: 900px) {
  .home-glamping-grid {
    grid-template-columns: 1fr;
  }

  .glamping-image {
    height: 280px;
  }

  .glamping-content {
    padding: 34px;
  }
}

/* ================= HIŠA ANIKA PAGE ================= */

.anika-page-hero {
  min-height: 100vh;
  padding: 150px 8% 90px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(233,223,209,.95), rgba(233,223,209,.45)),
    url('podstrani/slike/anika-hero.jpg') center/cover;
}

.anika-page-content {
  max-width: 720px;
}

.anika-page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(72px, 10vw, 140px);
  font-style: italic;
  line-height: .9;
  margin-bottom: 34px;
}

.anika-page-content h1 span {
  color: var(--orange);
}

.anika-page-content p {
  max-width: 560px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: #5e3f2d;
  margin-bottom: 42px;
}

.anika-page-actions {
  display: flex;
  gap: 18px;
}

.anika-story {
  padding: 110px 8%;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
  background: var(--cream);
}

.anika-story-image {
  height: 620px;
  overflow: hidden;
  box-shadow: 0 30px 75px rgba(58,29,8,.18);
}

.anika-story-image img,
.anika-gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.anika-story-text {
  background: rgba(243,234,223,.78);
  padding: 54px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 20px 55px rgba(58,29,8,.10);
}

.anika-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 76px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 32px;
}

.anika-story-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #5e3f2d;
  margin-bottom: 18px;
}

.anika-feel {
  margin: 0 8% 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--brown);
  color: var(--cream);
}

.anika-feel div {
  padding: 46px;
  text-align: center;
  border-right: 1px solid rgba(233,223,209,.15);
}

.anika-feel div:last-child {
  border-right: 0;
}

.anika-feel span {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--orange);
}

.anika-feel p {
  margin-top: 10px;
  color: rgba(233,223,209,.78);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.anika-gallery-preview {
  padding: 0 8% 110px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  background: var(--cream);
}

.anika-gallery-large {
  height: 620px;
  overflow: hidden;
}

.anika-gallery-small {
  display: grid;
  gap: 24px;
}

.anika-gallery-small img {
  height: 298px;
}

.anika-quote {
  padding: 120px 8%;
  background:
    radial-gradient(circle at 20% 20%, rgba(171,38,13,.08), transparent 30%),
    #ded2c2;
}

.anika-quote-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 70px;
  text-align: center;
  background: rgba(243,234,223,.55);
  border: 1px solid rgba(58,29,8,.12);
  box-shadow: 0 30px 80px rgba(58,29,8,.12);
}

.anika-quote-inner span {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.anika-quote-inner p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.16;
  color: var(--brown);
}

.anika-quote-inner strong {
  color: var(--orange);
  font-weight: 500;
}

@media (max-width: 700px) {
  .anika-quote-inner {
    padding: 42px 28px;
  }
}

@media (max-width: 900px) {
  .anika-story,
  .anika-gallery-preview,
  .anika-feel {
    grid-template-columns: 1fr;
  }

  .anika-story-image,
  .anika-gallery-large {
    height: 380px;
  }

  .anika-gallery-small img {
    height: 260px;
  }

  .anika-story-text {
    padding: 34px;
  }

  .anika-page-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-hero {
  min-height: 72vh;
  padding: 150px 8% 90px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(233,223,209,.95), rgba(233,223,209,.45)),
    url('podstrani/slike/kontakt-hero.jpg') center/cover;
}

.contact-hero-content {
  max-width: 800px;
}

.contact-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-style: italic;
  line-height: .9;
  margin-bottom: 34px;
  letter-spacing: 5px;
}

.contact-hero-content h1 span {
  color: var(--orange);
}

.contact-hero-content p {
  max-width: 560px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: #5e3f2d;
}

/* ================= CONTACT CONTENT ================= */

.contact-section {
  padding: 110px 8%;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  background: var(--cream);
}

/* INFO */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-card {
  background: rgba(243,234,223,.78);
  padding: 42px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 20px 55px rgba(58,29,8,.10);
}

.contact-card span {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  margin-bottom: 18px;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-style: italic;
  margin-bottom: 16px;
}

.contact-card p {
  color: #5e3f2d;
  line-height: 1.7;
}

/* FORM */

.contact-form-wrap {
  background: rgba(243,234,223,.82);
  padding: 54px;
  box-shadow: 0 25px 60px rgba(58,29,8,.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  border: 1px solid rgba(58,29,8,.12);
  background: rgba(255,255,255,.5);
  padding: 18px 20px;
  font-size: 16px;
  font-family: 'Jost', sans-serif;
  color: var(--brown);
  outline: none;
  transition: border .25s ease, background .25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: white;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap,
  .contact-card {
    padding: 34px;
  }

  .contact-hero {
    min-height: 60vh;
  }

}

.hero {
  min-height: 100vh;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 8% 80px;
  overflow: hidden;
}

.hero-content {
  max-width: 560px;
  z-index: 2;
}

.hero-news-card {
  position: absolute;
  right: 8%;
  top: 125px;
  width: min(520px, 42vw);
  z-index: 3;
  padding: 38px;
  background: rgba(243, 234, 223, .72);
  border: 1px solid rgba(58, 29, 8, .14);
  border-left: 4px solid var(--orange);
  box-shadow: 0 30px 80px rgba(36, 18, 5, .18);
  backdrop-filter: blur(14px);
}

.hero-news-head {
  margin-bottom: 26px;
}

.hero-news-head span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-news-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.hero-news-item {
  padding: 20px 0;
  border-top: 1px solid rgba(58, 29, 8, .14);
}

.hero-news-item small {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-news-item h4 {
  margin: 9px 0 7px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-news-item p {
  color: #5e3f2d;
  font-size: 14px;
  line-height: 1.55;
}

.hero-news-item:hover h4 {
  color: var(--orange);
}

@media (max-width: 1100px) {
  .hero {
    padding-top: 130px;
    display: block;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-news-card {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 60px;
  }
}

@media (max-width: 700px) {
  .hero-news-card {
    padding: 28px;
  }

  .hero-news-head h3 {
    font-size: 38px;
  }
}

.featured-news {
  margin-top: 26px;
  padding: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(156, 156, 156, 0.08),
      rgba(255,255,255,.55)
    );
  border: 1px solid rgba(171,38,13,.18);
  border-left: 4px solid var(--orange);
  box-shadow: 0 18px 40px rgba(58,29,8,.08);
}

.featured-news small {
  font-size: 10px;
  letter-spacing: .22em;
}

.featured-news h4 {
  font-size: 31px;
  line-height: 1.05;
  margin: 14px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}

.featured-news p {
  font-size: 16px;
  line-height: 1.7;
  color: #5e3f2d;
}

.featured-news:hover {
  transform: translateY(-3px);
  transition: .25s ease;
}

html {
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Edge */
}

* {
  max-width: 100%;
}

.anika-gallery-section {
  padding: 110px 8%;
  background: var(--cream);
}

.anika-gallery-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.anika-gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 82px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}

.anika-gallery-header h2 span {
  color: var(--orange);
}

.anika-gallery-header p {
  max-width: 560px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: #5e3f2d;
}

/* ================= ANIKA SHOWCASE FINAL ================= */

.anika-showcase {
  padding: 130px 8%;
  background: var(--cream);
}

.anika-showcase-head {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.anika-showcase-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 86px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}

.anika-showcase-head h2 span {
  color: var(--orange);
}

.anika-showcase-head p {
  max-width: 620px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: #5e3f2d;
}

.anika-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 28px;
  align-items: stretch;
}

.anika-showcase-main {
  height: 620px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(58,29,8,.18);
}

.anika-showcase-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.anika-showcase-side img {
  height: 296px;
}

.anika-showcase-main img,
.anika-showcase-side img {
  width: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 22px 55px rgba(58,29,8,.14);
}

.anika-showcase-main img {
  height: 100%;
}

@media (max-width: 900px) {
  .anika-showcase-grid {
    grid-template-columns: 1fr;
  }

  .anika-showcase-main {
    height: 360px;
  }

  .anika-showcase-side {
    grid-template-columns: 1fr;
  }

  .anika-showcase-side img {
    height: 280px;
  }
}

.apartment-showcase {
  padding: 120px 8%;
  background: var(--cream);
}

.apartment-showcase-head {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.apartment-showcase-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 86px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}

.apartment-showcase-head h2 span {
  color: var(--orange);
}

.apartment-showcase-head p {
  max-width: 620px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: #5e3f2d;
}

.apartment-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 28px;
}

.apartment-showcase-main {
  height: 620px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(58,29,8,.18);
}

.apartment-showcase-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.apartment-showcase-side img {
  height: 296px;
}

.apartment-showcase-main img,
.apartment-showcase-side img {
  width: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 22px 55px rgba(58,29,8,.14);
}

.apartment-showcase-main img {
  height: 100%;
}

@media (max-width: 900px) {
  .apartment-showcase-grid {
    grid-template-columns: 1fr;
  }

  .apartment-showcase-main {
    height: 360px;
  }

  .apartment-showcase-side {
    grid-template-columns: 1fr;
  }

  .apartment-showcase-side img {
    height: 280px;
  }
}

/* ================= DOMAČI SOKOVI ================= */
/* ================= DOMAČI SOKOVI ================= */

.home-juices {
  position: relative;
  padding: 110px 8% 0;
  background: var(--cream);
  overflow: visible;
  text-align: center;
  z-index: 2;
}

.home-juices-head {
  max-width: 760px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 3;
}

.home-juices-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}

.home-juices-head h2 span {
  color: var(--orange);
}

.home-juices-head p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #5e3f2d;
}

.juice-showcase-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 2;
}

.juice-showcase {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
  height: 650px;
  transform: translateY(120px);
  z-index: 2;
}

.juice-item {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform-origin: bottom center;
  transition: transform .45s ease, z-index .1s ease;
}

.juice-item img {
  height: 620px;
  width: auto;
  display: block;
  filter: drop-shadow(0 28px 30px rgba(36,18,5,.25));
  transition: transform .45s ease, filter .45s ease;
}

.juice-left {
  transform: translateX(-92%) rotate(-8deg) scale(.9);
  z-index: 1;
}

.juice-main {
  transform: translateX(-50%) scale(1.04);
  z-index: 3;
}

.juice-right {
  transform: translateX(-8%) rotate(8deg) scale(.9);
  z-index: 1;
}

.juice-item:hover {
  z-index: 10;
}

.juice-item:hover img {
  transform: translateY(-28px) scale(1.1);
  filter: drop-shadow(0 45px 45px rgba(36,18,5,.35));
}

.juice-showcase:hover .juice-item:not(:hover) img {
  filter: drop-shadow(0 20px 24px rgba(36,18,5,.14)) brightness(.88);
}

.juice-note {
  margin-top: 120px;
  padding: 28px;
  border-top: 1px solid rgba(58,29,8,.18);
  border-bottom: 1px solid rgba(58,29,8,.18);
}

.juice-note span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.juice-note p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: #5e3f2d;
}

.juice-deco {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(120px, 15vw, 240px);
  color: rgba(171,38,13,.055);
  pointer-events: none;
  z-index: 0;
}

.juice-deco-left {
  left: 7%;
  bottom: 130px;
}

.juice-deco-right {
  right: 6%;
  top: 190px;
}

/* naslednja sekcija prekrije spodnji del sokov */
.homepage-gallery-section {
  position: relative;
  z-index: 5;
}

/* fade efekt */
.homepage-gallery-section::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(233,223,209,0),
    var(--cream)
  );
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .juice-showcase-wrap {
    grid-template-columns: 1fr;
  }

  .juice-note {
    display: none;
  }
}

@media (max-width: 800px) {
  .home-juices {
    padding: 80px 5% 40px;
    overflow: hidden;
  }

  .home-juices-head {
    margin-bottom: 10px;
  }

  .home-juices-head h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .home-juices-head p {
    font-size: 17px;
  }

  .juice-showcase-wrap {
    display: block;
    max-width: 100%;
  }

  .juice-note {
    display: none;
  }

  .juice-showcase {
    position: relative;
    display: block;
    width: 100%;
    max-width: 360px;
    height: 430px;
    margin: 0 auto;
    transform: translateY(130px);
  }

  .juice-item {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-origin: bottom center;
  }

  .juice-item img {
    height: 420px;
    width: auto;
    max-width: none;
  }

  .juice-left {
    transform: translateX(-86%) rotate(-8deg) scale(.78);
    z-index: 1;
  }

  .juice-main {
    transform: translateX(-50%) scale(.88);
    z-index: 3;
  }

  .juice-right {
    transform: translateX(-15%) rotate(8deg) scale(.78);
    z-index: 1;
  }

  .juice-item:hover img {
    transform: translateY(-14px) scale(1.04);
  }

  .juice-deco-left {
    left: -6%;
    bottom: 80px;
  }

  .juice-deco-right {
    right: -10%;
    top: 150px;
  }

  .homepage-gallery-section::before {
    display: none;
  }
}

/* ================= O NAS PAGE ================= */

.about-hero {
  min-height: 88vh;
  padding: 150px 8% 90px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(233,223,209,.94), rgba(233,223,209,.42)),
    url('podstrani/slike/goricko_ozadje.jpg') center/cover;
}

.about-hero-content {
  max-width: 780px;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 92px);
  font-style: italic;
  line-height: .95;
  margin-bottom: 34px;
  letter-spacing: 6px;
}

.about-hero h1 span {
  color: var(--orange);
}

.about-hero p {
  max-width: 560px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: #5e3f2d;
}

.about-story {
  padding: 110px 8%;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
  background: var(--cream);
}

.about-story-image {
  height: 620px;
  overflow: hidden;
  box-shadow: 0 30px 75px rgba(58,29,8,.18);
}

.about-story-image img,
.about-experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-text {
  background: rgba(243,234,223,.78);
  padding: 54px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 20px 55px rgba(58,29,8,.10);
}

.about-story-text h2,
.about-goricko-head h2,
.about-experience-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 76px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
}

.about-story-text p,
.about-experience-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #5e3f2d;
  margin-bottom: 18px;
}

.about-highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px !important;
  color: var(--brown) !important;
  margin-top: 28px;
}

.about-values {
  margin: 0 8% 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--brown);
  color: var(--cream);
}

.about-value {
  padding: 48px;
  border-right: 1px solid rgba(233,223,209,.15);
}

.about-value:last-child {
  border-right: 0;
}

.about-value span {
  color: var(--orange);
  letter-spacing: .25em;
  font-size: 12px;
}

.about-value h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-style: italic;
  margin: 18px 0 14px;
}

.about-value p {
  color: rgba(233,223,209,.75);
  line-height: 1.7;
}

.about-goricko {
  position: relative;
  padding: 120px 8%;
  background:
    radial-gradient(circle at 18% 18%, rgba(171,38,13,.08), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(58,29,8,.07), transparent 30%),
    var(--cream);
  overflow: hidden;
}

.about-goricko::before {
  content: "Goričko";
  position: absolute;
  left: 4%;
  bottom: -35px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(120px, 16vw, 250px);
  color: rgba(171,38,13,.045);
  pointer-events: none;
}

.about-goricko-head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}

.about-goricko-head h2 span {
  color: var(--orange);
}

.about-goricko-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.goricko-card {
  position: relative;
  min-height: 230px;
  padding: 36px;
  background: rgba(243,234,223,.82);
  border: 1px solid rgba(58,29,8,.12);
  box-shadow: 0 22px 55px rgba(58,29,8,.10);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.goricko-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(171,38,13,.18);
  border-radius: 50%;
  transition: transform .35s ease;
}

.goricko-card span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;

  background: rgba(171,38,13,.10);
  border: 1px solid rgba(171,38,13,.16);

  color: var(--orange);
  font-size: 26px;

  backdrop-filter: blur(4px);

  transition:
    background .28s ease,
    color .28s ease,
    transform .28s ease,
    border-color .28s ease;
}

.goricko-card:hover span {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: scale(1.08);
}

.goricko-card span i {
  font-size: 24px;
}

.goricko-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 14px;
}

.goricko-card p {
  color: #5e3f2d;
  line-height: 1.65;
  font-size: 16px;
}

.goricko-card:hover {
  transform: translateY(-8px);
  background: rgba(243,234,223,.95);
  box-shadow: 0 34px 80px rgba(58,29,8,.16);
}

.goricko-card:hover::after {
  transform: scale(1.25);
}

.goricko-card:hover span {
  background: var(--orange);
}

@media (max-width: 1000px) {
  .about-goricko-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .about-goricko-grid {
    grid-template-columns: 1fr;
  }

  .goricko-card {
    min-height: auto;
  }
}

.about-experience {
  padding: 110px 8%;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 70px;
  align-items: center;
  background: #ded2c2;
}

.about-experience-text p {
  margin-bottom: 34px;
}

.about-experience-image {
  height: 560px;
  overflow: hidden;
  box-shadow: 0 30px 75px rgba(58,29,8,.18);
}

@media (max-width: 900px) {
  .about-story,
  .about-values,
  .about-goricko-grid,
  .about-experience {
    grid-template-columns: 1fr;
  }

  .about-story-image,
  .about-experience-image {
    height: 360px;
  }

  .about-story-text {
    padding: 34px;
  }

  .about-value {
    border-right: 0;
    border-bottom: 1px solid rgba(233,223,209,.15);
  }

  .about-value:last-child {
    border-bottom: 0;
  }
}

.home-camper {
  padding: 120px 8%;
  background:
    radial-gradient(circle at 85% 20%, rgba(171,38,13,.08), transparent 28%),
    var(--cream);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.home-camper-image {
  height: 560px;
  overflow: hidden;
  box-shadow: 0 30px 75px rgba(58,29,8,.18);
  border: 1px solid rgba(58,29,8,.12);
}

.home-camper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.home-camper:hover .home-camper-image img {
  transform: scale(1.05);
}

.home-camper-content {
  background: rgba(243,234,223,.78);
  padding: 54px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 24px 60px rgba(58,29,8,.10);
}

.home-camper-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 76px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 28px;
}

.home-camper-content h2 span {
  color: var(--orange);
}

.home-camper-content p {
  color: #5e3f2d;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.camper-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.camper-meta div {
  background: var(--cream);
  border: 1px solid rgba(58,29,8,.12);
  padding: 22px;
}

.camper-meta strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 4px;
}

.camper-meta small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
}

.camper-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .home-camper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-camper-image {
    height: 340px;
  }

  .home-camper-content {
    padding: 34px;
  }

  .camper-meta {
    grid-template-columns: 1fr;
  }
}

/* ================= DARILNI BONI S SLIKO ================= */

.home-gift {
  position: relative;
  min-height: 720px;
  padding: 120px 8%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.home-gift-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(233,223,209,.95), rgba(233,223,209,.45), rgba(36,18,5,.18)),
    url('podstrani/slike/darilni-bon.jpg') center/cover;
  z-index: 1;
}

.home-gift-box {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 56px;
  background: rgba(243,234,223,.84);
  border-left: 4px solid var(--orange);
  box-shadow: 0 30px 80px rgba(58,29,8,.18);
  backdrop-filter: blur(10px);
}

.home-gift-box h2,
.apartments-gift-image h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 78px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 28px;
}

.home-gift-box h2 span {
  color: var(--orange);
}

.home-gift-box p,
.apartments-gift-image p {
  color: #5e3f2d;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.gift-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.gift-info div {
  padding: 20px;
  background: rgba(233,223,209,.72);
  border: 1px solid rgba(58,29,8,.12);
}

.gift-info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 10px;
}

.gift-info span {
  display: block;
  color: #5e3f2d;
  line-height: 1.45;
  font-size: 14px;
}

/* APARTMAJI PAGE BON */

.apartments-gift-image {
  position: relative;
  margin-top: 90px;
  padding: 70px;
  min-height: 360px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(243,234,223,.95), rgba(243,234,223,.72), rgba(36,18,5,.25)),
    url('podstrani/slike/darilni-bon.jpg') center/cover;
  box-shadow: 0 30px 75px rgba(58,29,8,.14);
}

.apartments-gift-image > * {
  position: relative;
  z-index: 2;
}

.apartments-gift-image div {
  max-width: 660px;
}

.apartments-gift-image h2 {
  margin-bottom: 22px;
}

.apartments-gift-image p {
  margin-bottom: 0;
  max-width: 570px;
}

.apartments-gift-image .btn {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .home-gift {
    min-height: auto;
    padding: 90px 8%;
  }

  .home-gift-box {
    padding: 36px;
  }

  .gift-info {
    grid-template-columns: 1fr;
  }

  .apartments-gift-image {
    flex-direction: column;
    align-items: flex-start;
    padding: 42px;
  }
}

/* ================= DARILNI BON PAGE ================= */

.gift-page {
  position: relative;
  min-height: 100vh;
  padding: 150px 8% 100px;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 70px;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.gift-page-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(233,223,209,.96), rgba(233,223,209,.7)),
    url('podstrani/slike/darilni-bon.jpg') center/cover;
  z-index: 1;
}

.gift-page-content,
.gift-form-wrap {
  position: relative;
  z-index: 2;
}

.gift-page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 7vw, 110px);
  font-style: italic;
  line-height: .95;
  margin-bottom: 30px;
}

.gift-page-content h1 span {
  color: var(--orange);
}

.gift-page-content p {
  max-width: 520px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #5e3f2d;
}

.gift-form-wrap {
  background: rgba(243,234,223,.88);
  padding: 50px;
  box-shadow: 0 30px 80px rgba(58,29,8,.16);
  border-left: 4px solid var(--orange);
  backdrop-filter: blur(10px);
}

.gift-form {
  display: grid;
  gap: 22px;
}

.form-message {
  padding: 18px 22px;
  margin-bottom: 26px;
  font-size: 15px;
}

.form-message.success {
  background: rgba(60,120,70,.12);
  color: #2f6b3f;
}

.form-message.error {
  background: rgba(171,38,13,.12);
  color: var(--orange);
}

@media (max-width: 900px) {
  .gift-page {
    grid-template-columns: 1fr;
    padding: 130px 8% 80px;
  }

  .gift-form-wrap {
    padding: 34px;
  }
}

.gift-page-buttons {
  margin-top: 40px;
}

.gift-page-buttons .btn {
  min-width: 170px;
  text-align: center;
}

/* ================= BUTTON POLISH ================= */

.btn,
.btn-outline,
.footer-btn,
.homepage-gallery-button a,
.home-apartments-cta a {
  position: relative;
  overflow: hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

.btn:hover,
.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(171, 38, 13, .28);
}

.btn.dark:hover {
  background: #3a1f0d;
}

.btn::after,
.footer-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn:hover::after,
.footer-btn:hover::after {
  transform: translateX(120%);
}

/* ================= LANGUAGE BUTTONS ================= */

.language-switcher {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.language-switcher a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(171,38,13,.18);
  background: rgba(243,234,223,.55);
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  transition: .25s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ================= HERO RESPONSIVE ================= */

@media (max-width: 1200px) {
  .hero {
    padding-top: 140px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero-news-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 720px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 80px 1fr auto;
    padding: 0 6%;
    height: 78px;
  }

  .site-header nav {
    display: none;
  }

  .logo {
    width: 45px;
  }

  .language-switcher {
    gap: 6px;
  }

  .language-switcher a {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 125px 6% 70px;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 78px);
    letter-spacing: 3px;
  }

  .hero p {
    font-size: 18px;
    margin-top: 26px;
    margin-bottom: 32px;
  }

  .actions {
    flex-wrap: wrap;
  }

  .actions .btn {
    flex: 1 1 150px;
    text-align: center;
  }

  .hero-news-card {
    padding: 30px;
  }

  .featured-news h4 {
    font-size: 26px;
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .language-switcher {
    justify-self: end;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.03;
  }

  .hero-news-head h3 {
    font-size: 36px;
  }

  .hero-news-card {
    padding: 24px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 15%, rgba(171,38,13,.08), transparent 28%),
    var(--cream);
  padding: 130px 8% 80px;
}

.admin-login {
  max-width: 460px;
  margin: 80px auto;
  background: rgba(243,234,223,.9);
  border-left: 4px solid var(--orange);
  box-shadow: 0 30px 80px rgba(58,29,8,.16);
  padding: 46px;
}

.admin-login h1,
.admin-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 28px;
}

.admin-login form {
  display: grid;
  gap: 16px;
}

.admin-login label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.admin-login input,
.admin-content input,
.admin-content textarea {
  width: 100%;
  border: 1px solid rgba(58,29,8,.14);
  background: rgba(255,255,255,.55);
  padding: 16px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--brown);
  outline: none;
}

.admin-login input:focus,
.admin-content input:focus,
.admin-content textarea:focus {
  border-color: var(--orange);
  background: white;
}

.admin-login button,
.admin-content button {
  border: 0;
  background: var(--orange);
  color: white;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: .25s ease;
}

.admin-login button:hover,
.admin-content button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(171,38,13,.25);
}

.admin-alert {
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 14px;
  border-left: 4px solid var(--orange);
}

.admin-alert.error {
  background: rgba(171,38,13,.08);
  color: var(--orange);
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 110px;
  background: var(--brown);
  color: var(--cream);
  padding: 34px;
  box-shadow: 0 28px 70px rgba(58,29,8,.22);
}

.admin-sidebar h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 34px;
}

.admin-sidebar nav {
  display: grid;
  gap: 10px;
}

.admin-sidebar nav a {
  color: rgba(233,223,209,.72);
  text-decoration: none;
  padding: 14px 16px;
  border: 1px solid rgba(233,223,209,.1);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .25s ease;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: translateX(6px);
}

.admin-content {
  background: rgba(243,234,223,.86);
  border: 1px solid rgba(58,29,8,.12);
  box-shadow: 0 24px 65px rgba(58,29,8,.12);
  padding: 48px;
  min-height: 620px;
}

.admin-content p {
  color: #5e3f2d;
  line-height: 1.7;
  font-size: 16px;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.admin-cards a {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: var(--cream);
  border-left: 4px solid var(--orange);
  box-shadow: 0 18px 45px rgba(58,29,8,.08);
  color: var(--brown);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: .25s ease;
}

.admin-cards a:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(58,29,8,.15);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  background: rgba(255,255,255,.35);
}

.admin-table th,
.admin-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(58,29,8,.12);
}

.admin-table th {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.admin-table td {
  color: #5e3f2d;
}

@media (max-width: 1000px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    top: auto;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .admin-page {
    padding: 110px 6% 60px;
  }

  .admin-login,
  .admin-content,
  .admin-sidebar {
    padding: 28px;
  }

  .admin-sidebar nav {
    grid-template-columns: 1fr;
  }

  .admin-table {
    font-size: 13px;
  }

  .admin-table th,
  .admin-table td {
    padding: 12px;
  }
}

/* ================= ADMIN GALERIJA ================= */

.admin-alert.success {
  background: rgba(68, 120, 75, .12);
  color: #2f6e39;
  border-left: 4px solid #2f6e39;
}

.admin-upload-form {
  margin: 34px 0 46px;
  display: grid;
  gap: 18px;
}

.admin-upload-box {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(171,38,13,.08), transparent 28%),
    rgba(255,255,255,.36);
  border: 2px dashed rgba(171,38,13,.35);
  cursor: pointer;
  text-align: center;
  transition: .25s ease;
}

.admin-upload-box:hover {
  background: rgba(255,255,255,.55);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.admin-upload-box input {
  display: none;
}

.admin-upload-box span {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 10px;
}

.admin-upload-box small {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.admin-gallery-item {
  background: var(--cream);
  box-shadow: 0 18px 45px rgba(58,29,8,.12);
  overflow: hidden;
  border: 1px solid rgba(58,29,8,.1);
}

.admin-gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.admin-gallery-info {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.admin-gallery-info span {
  font-size: 13px;
  color: var(--muted);
  word-break: break-all;
}

.delete-btn {
  background: #6e1d12 !important;
  width: 100%;
}

.delete-btn:hover {
  background: var(--orange) !important;
}

@media (max-width: 1000px) {
  .admin-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .admin-gallery-grid {
    grid-template-columns: 1fr;
  }

  .admin-gallery-item img {
    height: 260px;
  }
}

/* ================= ADMINI ================= */

.admin-form-card {
  margin: 34px 0 46px;
  padding: 34px;
  background: rgba(255,255,255,.35);
  border-left: 4px solid var(--orange);
  box-shadow: 0 18px 45px rgba(58,29,8,.08);
}

.admin-form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 24px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}

.admin-form-card label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.small-delete {
  padding: 10px 16px !important;
  font-size: 10px !important;
  margin: 0 !important;
}

.current-admin {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

@media (max-width: 700px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= ADMIN NOVICE ================= */

.admin-lang-box {
  margin-top: 28px;
  padding: 28px;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(58,29,8,.1);
}

.admin-lang-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--brown);
}

.admin-lang-box label {
  display: block;
  margin-top: 16px;
}

.admin-content textarea {
  resize: vertical;
  min-height: 130px;
}

.admin-cancel-btn,
.edit-btn {
  display: inline-block;
  margin-top: 14px;
  text-decoration: none;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

.edit-btn {
  margin-top: 0;
}

.admin-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.translation-status {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 28px;
  margin-right: 6px;
  background: rgba(58,29,8,.08);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.translation-status.ok {
  background: rgba(171,38,13,.14);
  color: var(--orange);
}

@media (max-width: 800px) {
  .admin-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hamburger {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    height: 78px;
    grid-template-columns: 48px 1fr auto;
    padding: 0 22px;
    background: var(--cream);
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 42px;
    height: 42px;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    background: var(--brown);
    transition: .25s ease;
  }

  .logo {
    justify-self: center;
    width: 42px;
  }

  .language-switcher {
    justify-self: end;
    display: flex;
    gap: 6px;
  }

  .site-header nav {
    position: fixed;
    top: 78px;
    left: 0;
    width: 78%;
    max-width: 320px;
    height: calc(100vh - 78px);
    background: var(--brown);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 34px 26px;
    transform: translateX(-100%);
    transition: transform .35s ease;
    box-shadow: 24px 0 60px rgba(36,18,5,.25);
    z-index: 1000;
  }

  .site-header nav.open {
    transform: translateX(0);
  }

  .site-header nav a {
    color: var(--cream);
    padding: 18px 0;
    border-bottom: 1px solid rgba(233,223,209,.13);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ================= MOBILE NAV FIX ================= */

.hamburger {
  display: none;
}

/* DESKTOP */
.site-header {
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  align-items: center;
}

.site-header .logo {
  justify-self: start;
}

.site-header nav {
  justify-self: center;
}

.language-switcher {
  justify-self: end;
}

/* MOBILE */
@media (max-width: 900px) {
  .site-header {
    height: 78px;
    grid-template-columns: 48px 1fr auto;
    padding: 0 22px;
    background: rgba(233, 223, 209, .96);
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: flex-start;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--brown);
    transition: .25s ease;
  }

  .site-header .logo {
    justify-self: center;
    width: 46px;
  }

  .language-switcher {
    justify-self: end;
    display: flex;
    gap: 5px;
    z-index: 1002;
  }

  .language-switcher a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    font-size: 10px;
  }

  .site-header nav {
    position: fixed;
    top: 78px;
    left: 0;
    width: 82%;
    max-width: 330px;
    height: calc(100vh - 78px);
    background: var(--brown);
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 34px 28px;
    transform: translateX(-100%);
    transition: transform .35s ease;
    z-index: 1001;
    box-shadow: 24px 0 60px rgba(36,18,5,.28);
  }

  .site-header nav.open {
    transform: translateX(0);
  }

  .site-header nav a {
    color: var(--cream);
    padding: 18px 0;
    border-bottom: 1px solid rgba(233,223,209,.14);
    font-size: 13px;
    letter-spacing: .18em;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ================= MOBILE CONTACT FIX ================= */

@media (max-width: 900px) {
  .contact-hero {
    min-height: 560px;
    padding: 130px 7% 70px;
    align-items: flex-start;
  }

  .contact-hero-content {
    max-width: 100%;
    overflow: hidden;
  }

  .contact-hero-content h1 {
    font-size: clamp(54px, 17vw, 78px);
    line-height: .92;
    letter-spacing: 1px;
    margin-bottom: 24px;
  }

  .contact-hero-content p {
    font-size: 18px;
    line-height: 1.45;
    max-width: 95%;
  }

  .contact-section {
    padding: 70px 7%;
    gap: 34px;
  }

  .contact-form-wrap,
  .contact-card {
    padding: 28px;
  }
}

@media (max-width: 420px) {
  .contact-hero-content h1 {
    font-size: 58px;
  }
}

/* ================= MOBILE CONTACT FORM FIX ================= */

@media (max-width: 900px) {
  .contact-section {
    padding: 55px 6% 75px;
    gap: 26px;
  }

  .contact-info {
    gap: 20px;
  }

  .contact-card {
    padding: 28px 24px;
    overflow: hidden;
  }

  .contact-card h3 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.1;
    word-break: break-word;
  }

  .contact-card a,
  .contact-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .contact-form-wrap {
    padding: 28px 22px;
    margin-top: 6px;
    border-left: 4px solid var(--orange);
  }

  .contact-form {
    gap: 18px;
  }

  .form-group label {
    font-size: 11px;
    margin-bottom: 9px;
  }

  .form-group input,
  .form-group textarea {
    padding: 15px 16px;
    font-size: 15px;
    width: 100%;
  }

  .form-group textarea {
    min-height: 150px;
  }

  .contact-form button,
  .contact-form .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (max-width: 430px) {
  .contact-card h3 {
    font-size: 29px;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .contact-form-wrap {
    padding: 26px 20px;
  }
}

/* ================= APARTMA MOBILE FIX ================= */

@media (max-width: 900px) {

  /* HERO */

  .single-apartment {
    min-height: auto;
    padding: 120px 6% 70px;
    grid-template-columns: 1fr;
    gap: 40px;
    overflow: hidden;
  }

  .single-apartment-content {
    max-width: 100%;
    z-index: 3;
  }

  .single-apartment-content h1 {
    font-size: clamp(56px, 16vw, 88px);
    line-height: .9;
    margin-bottom: 22px;
  }

  .single-apartment-content p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 100%;
  }

  .single-apartment-buttons {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  .single-apartment-buttons .btn {
    flex: 1;
    min-width: 130px;
    justify-content: center;
  }

  /* SIDE INFO CARD */

  .apartment-side-card {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 28px 24px;
  }

  /* FEATURES */

  .single-features {
    padding: 70px 6%;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .single-features-content h2 {
    font-size: clamp(46px, 12vw, 70px);
    line-height: .95;
    margin-bottom: 22px;
  }

  .single-features-content p {
    font-size: 17px;
    line-height: 1.7;
  }

  .single-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .feature-box {
    padding: 22px 18px;
    min-height: 110px;
    font-size: 15px;
  }

  /* GALLERY */

  .apartment-showcase {
    padding: 70px 6%;
  }

  .apartment-showcase h2 {
    font-size: clamp(44px, 11vw, 70px);
    margin-bottom: 30px;
  }

  .apartment-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .apartment-gallery img {
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  /* CHECKIN */

  .single-checkin {
    padding: 70px 6%;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .single-checkin-card {
    padding: 28px 24px;
  }

  .single-checkin-card h3 {
    font-size: 32px;
  }
}

@media (max-width: 500px) {

  .single-features-grid {
    grid-template-columns: 1fr;
  }

  .single-apartment-content h1 {
    font-size: 54px;
  }

  .single-features-content h2,
  .apartment-showcase h2 {
    font-size: 52px;
  }
}

.single-apartment-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.single-apartment-buttons .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  line-height: 1.1 !important;
  padding: 0 24px !important;
  min-height: 58px;
}

@media (max-width: 900px) {
  .single-apartment-buttons .btn {
    height: 58px;
    padding: 0 22px !important;
  }
}

.single-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.single-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}