:root {
  --sea-950: #0b2425;
  --sea-900: #123334;
  --sea-800: #1d4947;
  --sea-600: #34716b;
  --olive-700: #647348;
  --olive-600: #7f8f5c;
  --olive-200: #dce5c9;
  --stone-50: #f8f5ee;
  --stone-100: #eee9dd;
  --stone-200: #ddd4c4;
  --ink: #1c2927;
  --muted: #68736e;
  --white: #ffffff;
  --sand: #d6aa69;
  --shadow: 0 24px 64px rgba(11, 36, 37, 0.13);
  --shadow-soft: 0 12px 34px rgba(11, 36, 37, 0.08);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

section {
  scroll-margin-top: 92px;
}

body {
  font-family: Arial, sans-serif;
  background: var(--stone-50);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 33, 38, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-wrapper {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.24rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.2px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 12px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(216, 223, 189, 0.14);
  color: var(--white);
  transform: translateY(-1px);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.lang-btn {
  width: 42px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--olive-200);
  color: var(--sea-950);
  border-color: var(--olive-200);
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: calc(96vh - 78px);
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 33, 38, 0.92) 0%, rgba(6, 33, 38, 0.72) 46%, rgba(6, 33, 38, 0.38) 100%),
    url("assets/gallery/25_kamp-parcela-s-pogledom-na-more_hero_1920x1080.webp") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(247, 244, 236, 0), var(--stone-50));
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 33, 38, 0.12), rgba(6, 33, 38, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 54px;
  padding-bottom: 92px;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(216, 223, 189, 0.16);
  border: 1px solid rgba(216, 223, 189, 0.28);
  font-size: 0.92rem;
  font-weight: 800;
  color: #f0f4dc;
}

.hero-subtitle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 5.2vw, 4.9rem);
  line-height: 1.02;
  margin-bottom: 14px;
  color: var(--white);
  letter-spacing: 0;
}

.hero-slogan {
  margin-bottom: 16px;
  color: var(--olive-200);
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-style: italic;
  line-height: 1.25;
}

.hero-text {
  font-size: 1.12rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--olive-200);
  color: var(--sea-950);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 104px 0;
  background: var(--stone-50);
}

.section-dark {
  background: var(--sea-950);
  color: var(--white);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.section-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--olive-700);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.section-dark .section-heading span {
  color: var(--olive-200);
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 14px;
  color: inherit;
}

.section-heading p {
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: 0 12px 30px rgba(6, 33, 38, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 129, 60, 0.38);
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-size: 1.16rem;
  margin-bottom: 12px;
  color: var(--sea-900);
}

.about-card p {
  color: var(--muted);
}

/* AMENITIES */
.amenities-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--stone-50), var(--stone-100));
}

.amenities-section::before {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  top: 96px;
  width: min(390px, 76vw);
  height: 470px;
  opacity: 0.18;
  pointer-events: none;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 420'%3E%3Cg fill='none' stroke='%23596b2f' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M157 390c9-58 8-116-2-174-6-34-2-72 14-113' stroke-width='12'/%3E%3Cpath d='M158 250c-37-34-78-59-124-73' stroke-width='9'/%3E%3Cpath d='M164 214c37-12 72-37 105-76' stroke-width='9'/%3E%3Cpath d='M165 166c-31-29-55-67-72-116' stroke-width='9'/%3E%3Cpath d='M173 138c38 4 75-8 111-36' stroke-width='9'/%3E%3Cpath d='M151 286c-43 4-82 22-117 54' stroke-width='8'/%3E%3Cpath d='M171 282c45 7 82 29 111 66' stroke-width='8'/%3E%3Cpath d='M146 337c24-21 49-34 77-38' stroke-width='7'/%3E%3C/g%3E%3Cg fill='%236f813c'%3E%3Cellipse cx='52' cy='170' rx='27' ry='13' transform='rotate(25 52 170)'/%3E%3Cellipse cx='88' cy='188' rx='24' ry='12' transform='rotate(-15 88 188)'/%3E%3Cellipse cx='40' cy='336' rx='24' ry='12' transform='rotate(-28 40 336)'/%3E%3Cellipse cx='84' cy='317' rx='18' ry='10' transform='rotate(16 84 317)'/%3E%3Cellipse cx='96' cy='55' rx='24' ry='12' transform='rotate(52 96 55)'/%3E%3Cellipse cx='122' cy='92' rx='20' ry='10' transform='rotate(-20 122 92)'/%3E%3Cellipse cx='255' cy='101' rx='30' ry='13' transform='rotate(-34 255 101)'/%3E%3Cellipse cx='283' cy='142' rx='22' ry='11' transform='rotate(18 283 142)'/%3E%3Cellipse cx='264' cy='343' rx='28' ry='13' transform='rotate(39 264 343)'/%3E%3Cellipse cx='220' cy='306' rx='19' ry='10' transform='rotate(-18 220 306)'/%3E%3Ccircle cx='196' cy='154' r='7'/%3E%3Ccircle cx='74' cy='224' r='6'/%3E%3Ccircle cx='242' cy='232' r='6'/%3E%3C/g%3E%3C/svg%3E");
  transform: rotate(-2deg);
}

.amenities-section .container {
  position: relative;
  z-index: 1;
}

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

.amenity-item {
  min-height: 150px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--stone-200);
  grid-column: span 2;
}

.amenity-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.amenity-item:nth-child(5) {
  grid-column: 4 / span 2;
}

.amenity-item i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--sea-900);
  color: var(--olive-200);
  font-size: 1.05rem;
}

.amenity-item h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
  color: var(--sea-900);
}

.amenity-item p {
  color: var(--muted);
}

/* GALLERY */
.gallery-carousel {
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  transition: transform 0.55s ease;
}

.gallery-page {
  min-width: 100%;
  display: block;
}

.gallery-item {
  overflow: hidden;
  min-width: 0;
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: var(--sea-900);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.gallery-item-panorama img {
  object-fit: cover;
  object-position: center;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.gallery-controls[hidden] {
  display: none;
}

.gallery-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 223, 189, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-arrow:hover {
  background: rgba(216, 223, 189, 0.18);
  transform: translateY(-2px);
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-dot.active {
  background: var(--olive-200);
  transform: scale(1.25);
}

/* PRICING */
.pricing-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--stone-200);
  padding: 24px;
  box-shadow: var(--shadow);
}

.price-table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.price-table-header h3 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.1;
  color: var(--sea-900);
}

.price-table-header p {
  margin-top: 8px;
  color: var(--muted);
}

.price-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--olive-700);
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.price-scroll-hint {
  display: none;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
}

.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  border: 1px solid #302d28;
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle;
  font-weight: 800;
}

.price-table thead th,
.price-table tbody th {
  background: #ddd7d0;
}

.price-table thead th:first-child {
  font-size: 1.3rem;
}

.price-table tbody th {
  min-width: 128px;
  color: #111111;
}

.price-table td {
  background: #ffffff;
}

.price-table i {
  font-size: 1.08rem;
  margin: 0 3px;
}

.price-icons {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.price-camper-icon {
  width: 25px;
  height: 20px;
  fill: currentColor;
}

.reservation-cta {
  max-width: 900px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--sea-900);
  color: var(--white);
  border: 1px solid rgba(216, 223, 189, 0.18);
}

.reservation-cta h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.reservation-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.reservation-cta .btn-primary {
  background: var(--olive-200);
  color: var(--sea-950);
}

.reservation-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

/* INFO */
.info-section {
  background: var(--sea-950);
  color: var(--white);
}

.info-section .section-heading span {
  color: var(--olive-200);
}

.info-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.info-item {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 223, 189, 0.18);
}

.info-item i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--olive-200);
  color: var(--sea-950);
  font-size: 1.16rem;
}

.info-item h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.info-item p {
  color: rgba(255, 255, 255, 0.75);
}

/* MAP */
.map-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 223, 189, 0.2);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.map-iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  grid-column: span 2;
}

.contact-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.contact-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 129, 60, 0.38);
  box-shadow: var(--shadow);
}

.contact-card i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--stone-100);
  color: var(--olive-700);
  font-size: 1.25rem;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  color: var(--sea-900);
}

.contact-card p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

/* FAQ */
.faq-section {
  background: var(--stone-100);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 33, 38, 0.05);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--sea-900);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--olive-700);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 22px 20px;
  color: var(--muted);
}

/* FOOTER */
.footer {
  padding: 54px 0 28px;
  border-top: 1px solid rgba(216, 223, 189, 0.14);
  background: var(--sea-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 34px;
}

.footer h2,
.footer h3 {
  margin-bottom: 12px;
}

.footer h2 {
  font-size: 1.55rem;
}

.footer h3 {
  color: var(--olive-200);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.footer a:hover {
  color: var(--olive-200);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-copy {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-contact-bar {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1040px) {
  .nav {
    gap: 10px;
  }

  .nav-links a {
    padding: 10px 9px;
    font-size: 0.88rem;
  }

  .lang-btn {
    width: 38px;
  }
}

@media (max-width: 992px) {
  .about-grid,
  .amenities-grid,
  .info-grid,
  .gallery-page,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-item,
  .amenity-item:nth-child(4),
  .amenity-item:nth-child(5) {
    grid-column: auto;
  }

  .contact-card,
  .contact-card:nth-child(4),
  .contact-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 84px;
  }

  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 78px;
    right: 16px;
    width: min(300px, calc(100% - 32px));
    background: var(--sea-950);
    border: 1px solid rgba(216, 223, 189, 0.18);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 4px;
  }

  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    padding: 13px 12px;
    font-size: 1rem;
  }

  .lang-switcher {
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    padding-left: 0;
    padding-top: 10px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .lang-btn {
    flex: 1;
    min-width: 48px;
  }

  .hero {
    min-height: calc(92vh - 78px);
    background:
      linear-gradient(180deg, rgba(6, 33, 38, 0.78), rgba(6, 33, 38, 0.78)),
      url("assets/gallery/25_kamp-parcela-s-pogledom-na-more_hero_1920x1080.webp") center/cover no-repeat;
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .section {
    padding: 86px 0;
  }

  .about-grid,
  .amenities-grid,
  .info-grid,
  .gallery-page,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .amenity-item {
    min-height: auto;
  }

  .reservation-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .price-table-header {
    flex-direction: column;
  }

  .price-download {
    width: 100%;
  }

  .pricing-card {
    padding: 16px 12px 18px;
  }

  .price-table-header {
    gap: 12px;
    margin-bottom: 12px;
  }

  .price-table-header h3 {
    font-size: 1.65rem;
  }

  .price-table-header p {
    font-size: 0.92rem;
  }

  .price-scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 12px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
  }

  .price-scroll-hint i {
    color: var(--olive-700);
  }

  .price-table-wrap {
    max-width: 100%;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    box-shadow: inset -18px 0 18px -18px rgba(6, 33, 38, 0.45);
  }

  .price-table {
    width: 680px;
    min-width: 680px;
    table-layout: fixed;
    font-size: 0.82rem;
  }

  .price-table th,
  .price-table td {
    padding: 8px 7px;
  }

  .price-table thead th:first-child,
  .price-table tbody th {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 112px;
    min-width: 112px;
  }

  .price-table thead th:nth-child(2),
  .price-table tbody td:first-of-type {
    position: sticky;
    left: 112px;
    z-index: 2;
    width: 48px;
    background: #ffffff;
  }

  .price-table thead th:nth-child(2) {
    background: #ddd7d0;
  }

  .price-table thead th:first-child {
    font-size: 1.05rem;
  }

  .price-table tbody tr:nth-last-child(-n + 2) td:first-of-type {
    position: static;
  }

  .reservation-actions {
    justify-content: stretch;
  }

  .reservation-actions .btn {
    width: 100%;
  }

  .gallery-controls {
    margin-top: 20px;
  }

  .map-iframe {
    height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body {
    padding-bottom: 78px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(6, 33, 38, 0.94);
    border: 1px solid rgba(216, 223, 189, 0.24);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    background: var(--olive-200);
    color: var(--sea-950);
    font-weight: 900;
  }

  .mobile-contact-bar a:last-child {
    background: #ffffff;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .nav-wrapper {
    min-height: 74px;
  }

  .nav {
    top: 74px;
    right: 12px;
    width: calc(100% - 24px);
  }

  .logo {
    font-size: 1.08rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 1.75rem;
  }

  .map-iframe {
    height: 320px;
  }
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--stone-50);
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

h1,
h2,
.price-table-header h3,
.footer h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.container {
  width: min(1240px, calc(100% - 48px));
}

.header {
  background: rgba(11, 36, 37, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
  min-height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.logo-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo:hover .logo-mark {
  transform: translateY(-2px) rotate(-2deg);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

.logo-copy {
  display: grid;
  line-height: 1;
}

.logo-copy strong {
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.logo-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav {
  gap: 13px;
}

.nav-links a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  background: rgba(220, 229, 201, 0.1);
}

.lang-switcher {
  gap: 3px;
  padding-left: 8px;
}

.lang-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--olive-200);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--sea-950);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: #e4bd80;
  transform: translateY(-2px);
}

.hero {
  min-height: calc(100svh - 88px);
  background:
    linear-gradient(90deg, rgba(7, 29, 30, 0.93) 0%, rgba(7, 29, 30, 0.72) 46%, rgba(7, 29, 30, 0.24) 100%),
    url("assets/gallery/25_kamp-parcela-s-pogledom-na-more_hero_1920x1080.webp") center/cover no-repeat;
}

.hero::after {
  height: 150px;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  max-width: 890px;
  padding: 104px 0 142px;
}

.hero-subtitle {
  margin-bottom: 25px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--olive-200);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-subtitle::before {
  width: 38px;
  height: 1px;
  border-radius: 0;
  background: var(--sand);
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 7.8vw, 7.5rem);
  line-height: 0.92;
}

.hero-slogan {
  margin-bottom: 24px;
  color: #f2d7aa;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.hero-text {
  max-width: 590px;
  margin-bottom: 35px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.btn {
  min-height: 56px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--sand);
}

.btn-primary:hover {
  background: #e4bd80;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 64px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-highlights div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-highlights i {
  color: var(--sand);
}

.hero-waves {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 112px;
  overflow: hidden;
  pointer-events: none;
}

.hero-waves svg {
  width: 160%;
  height: 100%;
  animation: driftWaves 18s ease-in-out infinite alternate;
}

.hero-wave {
  transform-origin: center bottom;
}

.hero-wave-back {
  fill: rgba(238, 233, 221, 0.42);
  animation: breatheWave 11s ease-in-out infinite alternate;
}

.hero-wave-front {
  fill: rgba(248, 245, 238, 0.88);
  animation: breatheWave 8s ease-in-out -2s infinite alternate-reverse;
}

@keyframes driftWaves {
  from { transform: translateX(-18%); }
  to { transform: translateX(-32%); }
}

@keyframes breatheWave {
  from { transform: scaleY(0.86); }
  to { transform: scaleY(1.08); }
}

.section {
  padding: 132px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 58px;
}

.section-heading span {
  color: var(--olive-700);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.section-heading h2 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.section-heading p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-editorial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  max-width: 1120px;
  margin: 0 auto 30px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo {
  position: relative;
  min-height: 430px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(11, 36, 37, 0.64);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.about-photo-note i {
  color: var(--sand);
}

.about-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: var(--sea-900);
  color: var(--white);
}

.editorial-kicker {
  margin-bottom: 25px;
  color: var(--sand);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-style: italic;
  line-height: 1.08;
}

.about-intro > p:not(.editorial-kicker) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
  line-height: 1.85;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: var(--olive-200);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-signature span {
  width: 44px;
  height: 1px;
  background: rgba(220, 229, 201, 0.5);
}

.about-grid {
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.about-card {
  padding: 29px 27px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-card:hover {
  border-color: transparent;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.about-card h3,
.amenity-item h3,
.contact-card h3 {
  color: var(--sea-900);
}

.amenities-section {
  background: var(--stone-100);
}

.amenities-section::before {
  opacity: 0.1;
}

.amenities-grid {
  gap: 14px;
}

.amenity-item {
  min-height: 174px;
  padding: 27px;
  border-color: rgba(221, 212, 196, 0.7);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.amenity-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.amenity-item i {
  border-radius: 50%;
}

.info-section {
  background:
    linear-gradient(135deg, rgba(11, 36, 37, 0.97), rgba(18, 51, 52, 0.97)),
    url("assets/gallery/18_pogled-s-kampa-na-more_hero_1920x1080.webp") center/cover no-repeat;
}

.info-grid {
  gap: 12px;
}

.info-item {
  min-height: 226px;
  padding: 27px;
  border-color: rgba(220, 229, 201, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.info-item i {
  border-radius: 50%;
  background: var(--sand);
}

.section-dark {
  background: var(--sea-950);
}

.gallery-carousel {
  overflow: hidden;
}

.gallery-item {
  border-radius: 20px;
}

.gallery-item img {
  min-height: 0;
}

.gallery-controls {
  margin-top: 34px;
}

.gallery-arrow {
  border-radius: 50%;
}

.pricing-card {
  max-width: 1040px;
  padding: 34px;
  border: 0;
  border-radius: 24px;
}

.price-download {
  border-radius: 999px;
  background: var(--sea-900);
}

.price-table-wrap {
  border-radius: 12px;
}

.reservation-cta {
  max-width: 1040px;
  margin-top: 18px;
  padding: 30px 34px;
  border: 0;
  border-radius: 20px;
  background: var(--sea-900);
}

.map-wrapper {
  border-radius: 24px;
}

.contact-grid {
  gap: 14px;
}

.contact-card {
  padding: 31px 21px;
  border-color: rgba(221, 212, 196, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.contact-card i {
  border-radius: 50%;
  background: var(--stone-100);
}

.faq-section {
  background: var(--stone-100);
}

.faq-list {
  max-width: 920px;
  gap: 9px;
}

.faq-item {
  border: 0;
  border-radius: 15px;
  box-shadow: none;
}

.faq-item summary {
  padding: 23px 25px;
}

.faq-item p {
  padding: 0 25px 23px;
}

.footer {
  padding-top: 70px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-brand > img {
  width: 118px;
  height: 118px;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.footer-brand h2 {
  margin-bottom: 8px;
}

@media (max-width: 1120px) {
  .nav-links a {
    padding-inline: 8px;
    font-size: 0.76rem;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 28px), 1240px);
  }

  .nav-wrapper {
    min-height: 78px;
  }

  .footer-brand {
    justify-content: center;
    text-align: left;
  }

  .logo {
    min-width: 0;
  }

  .hamburger {
    display: block !important;
    flex: 0 0 48px;
  }

  .nav {
    top: 78px;
    background: rgba(11, 36, 37, 0.98);
    border-radius: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 78px);
    background:
      linear-gradient(180deg, rgba(7, 29, 30, 0.6), rgba(7, 29, 30, 0.88)),
      url("assets/gallery/25_kamp-parcela-s-pogledom-na-more_hero_1920x1080.webp") center/cover no-repeat;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 76px 0 106px;
    overflow: hidden;
    text-align: center;
  }

  .hero-text,
  .hero-buttons,
  .hero-highlights {
    width: 100%;
    max-width: 100%;
  }

  .hero-subtitle,
  .hero-buttons,
  .hero-highlights {
    justify-content: center;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-buttons .btn {
    max-width: 100%;
  }

  .hero h1 {
    width: min(100%, 340px);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.65rem, 11vw, 3.55rem);
  }

  .hero-text {
    max-width: 350px;
    font-size: 1rem;
  }

  .hero-highlights {
    gap: 10px 16px;
    margin-top: 43px;
  }

  .hero-highlights div {
    font-size: 0.64rem;
  }

  .hero-waves {
    height: 74px;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .about-editorial {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .about-photo {
    min-height: 270px;
  }

  .about-intro {
    padding: 31px 25px 34px;
  }

  .about-card {
    padding: 22px 18px;
  }

  .gallery-item {
    border-radius: 14px;
  }

  .pricing-card {
    padding: 18px 13px 17px;
    border-radius: 16px;
  }

  .reservation-cta {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .mobile-contact-bar {
    border-radius: 18px;
  }

  .mobile-contact-bar a {
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-waves svg,
  .hero-wave {
    animation: none;
  }
}

@media (max-width: 480px) {
  .logo-mark {
    width: 48px;
    height: 48px;
  }

  .logo-copy strong {
    font-size: 1.22rem;
  }

  .logo-copy small {
    font-size: 0.53rem;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand > img {
    width: 126px;
    height: 126px;
  }

  .hero h1 {
    width: min(100%, 320px);
    font-size: clamp(2.5rem, 11vw, 3.25rem);
  }
}
