
:root {
  --bg: #042d31;
  --bg-soft: #0b3a3f;
  --panel: rgba(7, 37, 40, 0.78);
  --panel-solid: #0a363a;
  --gold: #dbab63;
  --gold-soft: rgba(219, 171, 99, 0.2);
  --gold-strong: #f2c27a;
  --text: #f4ede4;
  --text-soft: rgba(244, 237, 228, 0.78);
  --line: rgba(219, 171, 99, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 18px;
  --header-h: 88px;
  --container: min(1180px, calc(100% - 2rem));
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(219, 171, 99, 0.08), transparent 28%),
    linear-gradient(180deg, #032327 0%, #042d31 45%, #06282c 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  transition: opacity 0.65s ease, filter 0.65s ease, transform 0.65s ease;
}

body.is-preload .page-shell,
body.is-transitioning .page-shell {
  opacity: 0;
  filter: blur(14px);
  transform: scale(1.015);
}

.transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(7, 37, 40, 0.28) 0%, rgba(4, 45, 49, 0.92) 72%, rgba(2, 22, 24, 1) 100%);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  pointer-events: none;
}

.transition-overlay img {
  width: min(280px, 54vw);
  opacity: 0;
  transform: scale(0.9);
  filter: drop-shadow(0 0 20px rgba(219, 171, 99, 0.2));
  transition: opacity 0.65s ease, transform 0.65s ease;
}

body.is-preload .transition-overlay,
body.is-transitioning .transition-overlay {
  opacity: 1;
  visibility: visible;
}

body.is-preload .transition-overlay img,
body.is-transitioning .transition-overlay img {
  opacity: 1;
  transform: scale(1.07);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 5.6rem 0;
  position: relative;
}

.section-title {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
}

.section-title.center,
.section-intro.center {
  text-align: center;
}

.section-intro {
  margin: 0 0 2.2rem;
  max-width: 720px;
  color: var(--text-soft);
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 600;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.btn,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn {
  background: linear-gradient(180deg, rgba(229, 188, 120, 1) 0%, rgba(219, 171, 99, 1) 100%);
  color: #1b1712;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.btn-outline {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(219, 171, 99, 0.55);
  color: var(--gold-strong);
}

.btn-ghost {
  padding-inline: 0;
  min-height: auto;
  background: transparent;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  height: var(--header-h);
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(4, 45, 49, 0.88), rgba(4, 45, 49, 0.72));
  border-bottom: 1px solid rgba(219, 171, 99, 0.12);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(4, 45, 49, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  border-color: rgba(219, 171, 99, 0.18);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand img {
  width: 74px;
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.nav-link,
.dropdown-toggle {
  min-height: 48px;
  padding: 0.8rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.95rem;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover,
.nav-item.dropdown:hover > .dropdown-toggle,
.dropdown-toggle[aria-expanded="true"] {
  color: var(--gold-strong);
  border-color: rgba(219, 171, 99, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.nav-link.active {
  box-shadow: inset 0 0 0 1px rgba(219, 171, 99, 0.12);
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 240px;
  padding: 0.55rem;
  margin: 0;
  list-style: none;
  background: rgba(4, 34, 37, 0.98);
  border: 1px solid rgba(219, 171, 99, 0.16);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  color: var(--text-soft);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(2px);
}

.hamburger {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(219, 171, 99, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition), background var(--transition);
}

.hamburger:hover {
  color: var(--gold-strong);
  border-color: rgba(219, 171, 99, 0.42);
  transform: translateY(-1px);
}

.hamburger-box {
  position: relative;
  width: 20px;
  height: 14px;
}

.hamburger-box span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}

.hamburger-box span:nth-child(1) { top: 0; }
.hamburger-box span:nth-child(2) { top: 6px; }
.hamburger-box span:nth-child(3) { top: 12px; }

body.menu-open .hamburger-box span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
body.menu-open .hamburger-box span:nth-child(2) {
  opacity: 0;
}
body.menu-open .hamburger-box span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 1900;
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.mobile-nav-inner {
  width: var(--container);
  margin-inline: auto;
  padding: 0.75rem 0 1rem;
}

.mobile-nav-card {
  background: rgba(4, 34, 37, 0.98);
  border: 1px solid rgba(219, 171, 99, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

body.menu-open .mobile-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-list,
.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list > li + li {
  border-top: 1px solid rgba(219, 171, 99, 0.08);
}

.mobile-nav-link,
.mobile-submenu-toggle {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.mobile-nav-link.active,
.mobile-submenu a.active {
  color: var(--gold-strong);
}

.mobile-submenu-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.mobile-submenu-wrap.open {
  grid-template-rows: 1fr;
}

.mobile-submenu-clip {
  overflow: hidden;
}

.mobile-submenu {
  padding: 0 0 0.4rem 0.6rem;
}

.mobile-submenu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  color: var(--text-soft);
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.mobile-submenu-toggle[aria-expanded="true"] .chevron {
  transform: rotate(225deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 24, 26, 0.86) 0%, rgba(2, 24, 26, 0.6) 38%, rgba(2, 24, 26, 0.18) 70%, rgba(2, 24, 26, 0.52) 100%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(219, 171, 99, 0.15), transparent 25%),
    radial-gradient(circle at 82% 78%, rgba(219, 171, 99, 0.08), transparent 30%);
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-inner {
  width: var(--container);
  margin-inline: auto;
  padding: 4rem 0 5rem;
}

.hero-card {
  max-width: 760px;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  background: linear-gradient(180deg, rgba(7, 37, 40, 0.55), rgba(7, 37, 40, 0.32));
  border: 1px solid rgba(219, 171, 99, 0.16);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.hero p.lead {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-meta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 171, 99, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.35rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: linear-gradient(180deg, rgba(8, 36, 39, 0.88), rgba(7, 32, 35, 0.92));
  border: 1px solid rgba(219, 171, 99, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.45rem 1.35rem 1.35rem;
}

.card h3,
.info-card h3,
.review-card h3,
.feature h3,
.price-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 0.98;
}

.card p,
.info-card p,
.review-card p,
.feature p,
.split-copy p,
.price-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-weight: 600;
}

.card-link:hover {
  color: var(--gold-strong);
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.7rem;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: 28px;
  border: 1px solid rgba(219, 171, 99, 0.14);
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.glass-card,
.info-card,
.review-card,
.feature,
.price-card,
.contact-card,
.rule-card {
  background: linear-gradient(180deg, rgba(8, 36, 39, 0.88), rgba(7, 32, 35, 0.92));
  border: 1px solid rgba(219, 171, 99, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.glass-card {
  padding: 1.5rem;
}

.info-card,
.review-card,
.feature,
.price-card,
.contact-card,
.rule-card {
  padding: 1.5rem;
}

.metric {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(219, 171, 99, 0.08);
}

.metric:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.metric:first-child {
  padding-top: 0;
}

.metric-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(219, 171, 99, 0.2);
  background: rgba(255, 255, 255, 0.03);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.list li {
  display: flex;
  gap: 0.8rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.list li::before {
  content: "✦";
  color: var(--gold);
  flex: 0 0 auto;
}

.review-card .rating {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.review-author {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 600;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.price-tag {
  display: inline-block;
  margin: 0.85rem 0 0.45rem;
  font-size: 2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-strong);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(219, 171, 99, 0.14);
  background: rgba(8, 36, 39, 0.9);
  box-shadow: var(--shadow);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.table-wrap th,
.table-wrap td {
  padding: 1rem 1.1rem;
  text-align: left;
}

.table-wrap th {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(219, 171, 99, 0.16);
}

.table-wrap td {
  color: var(--text-soft);
  border-bottom: 1px solid rgba(219, 171, 99, 0.07);
}

.table-wrap tr:last-child td {
  border-bottom: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(219, 171, 99, 0.16), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(219, 171, 99, 0.08), transparent 26%);
  pointer-events: none;
}

.cta-band .glass-card {
  padding: 2rem;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.35rem;
}

.contact-card h3,
.rule-card h3 {
  font-size: 2.2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(219, 171, 99, 0.08);
}

.contact-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.map-placeholder {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(3, 34, 36, 0.78), rgba(6, 38, 41, 0.92)),
    url("../images/kontakt-hero.jpg") center / cover no-repeat;
  border: 1px solid rgba(219, 171, 99, 0.14);
  box-shadow: var(--shadow);
}

.map-overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(4, 34, 37, 0.88);
  border: 1px solid rgba(219, 171, 99, 0.16);
  backdrop-filter: blur(8px);
}

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(219, 171, 99, 0.12);
  background: linear-gradient(180deg, rgba(2, 22, 24, 0), rgba(2, 22, 24, 0.38));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 1.4rem;
}

.footer small,
.footer p,
.footer a {
  color: var(--text-soft);
  line-height: 1.8;
}

.footer h4 {
  margin: 0 0 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  padding-top: 1.4rem;
  margin-top: 1.8rem;
  border-top: 1px solid rgba(219, 171, 99, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1200;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(219, 171, 99, 1), rgba(194, 146, 74, 1));
  color: #183133;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.3);
  filter: saturate(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 171, 99, 0.16);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  margin-top: 1rem;
}



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-nav-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.5rem;
}

.mobile-nav-row .mobile-nav-link {
  padding-inline: 0.4rem;
}

.mobile-nav-row .mobile-submenu-toggle {
  width: 52px;
  min-width: 52px;
  justify-content: center;
  padding-inline: 0;
  border-radius: 14px;
}

.mobile-submenu-toggle.active {
  color: var(--gold-strong);
}

.gallery-shell {
  padding: 1.35rem;
  border-radius: 28px;
  border: 1px solid rgba(219, 171, 99, 0.16);
  background: linear-gradient(180deg, rgba(8, 36, 39, 0.92), rgba(7, 32, 35, 0.96));
  box-shadow: var(--shadow);
}

.gallery-stage {
  position: relative;
}

.gallery-stage-button {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

.gallery-stage-image {
  width: 100%;
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.gallery-stage-button:hover .gallery-stage-image {
  transform: scale(1.03);
}

.gallery-stage-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 17, 19, 0.1) 0%, rgba(3, 17, 19, 0.14) 35%, rgba(3, 17, 19, 0.72) 100%);
  pointer-events: none;
}

.gallery-stage-badge,
.gallery-stage-cta {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 171, 99, 0.22);
  backdrop-filter: blur(10px);
}

.gallery-stage-badge {
  top: 1rem;
  right: 1rem;
  background: rgba(4, 34, 37, 0.6);
  color: var(--gold-strong);
}

.gallery-stage-cta {
  left: 1rem;
  bottom: 1rem;
  background: rgba(4, 34, 37, 0.72);
  color: var(--text);
}

.gallery-toolbar {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-toolbar p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 760px;
}

.gallery-nav {
  display: inline-flex;
  gap: 0.7rem;
}

.gallery-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(219, 171, 99, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(219, 171, 99, 0.4);
  color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.05);
}

.gallery-thumbs {
  margin-top: 1.2rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(112px, 1fr);
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(219, 171, 99, 0.35) rgba(255, 255, 255, 0.03);
}

.gallery-thumb {
  position: relative;
  padding: 0;
  border: 1px solid rgba(219, 171, 99, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.gallery-thumb span {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  min-height: 2.2rem;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: rgba(4, 34, 37, 0.72);
  border: 1px solid rgba(219, 171, 99, 0.18);
  color: var(--gold-strong);
  font-size: 0.8rem;
  font-weight: 600;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(219, 171, 99, 0.42);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.section-tight {
  padding-top: 0;
}

.video-card {
  overflow: hidden;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(219, 171, 99, 0.14);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 36, 39, 0.88), rgba(7, 32, 35, 0.92));
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-placeholder img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 17, 19, 0.08) 0%, rgba(3, 17, 19, 0.18) 28%, rgba(3, 17, 19, 0.76) 100%);
}

.video-placeholder:hover img {
  transform: scale(1.03);
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(4, 34, 37, 0.74);
  border: 1px solid rgba(219, 171, 99, 0.24);
  backdrop-filter: blur(10px);
}

.video-play svg {
  width: 56px;
  height: 56px;
}

.video-play circle {
  fill: rgba(4, 34, 37, 0.6);
  stroke: rgba(219, 171, 99, 0.44);
  stroke-width: 1.5;
}

.video-play path {
  fill: var(--gold-strong);
}

.video-overlay {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(4, 45, 49, 0.72);
  border: 1px solid rgba(219, 171, 99, 0.28);
  color: #f5efe6;
  pointer-events: none;
}

.video-overlay strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.video-overlay span:last-child {
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 720px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(2, 14, 16, 0.84);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-figure {
  width: min(1120px, 100%);
  margin: 0;
  position: relative;
}

.lightbox-image {
  width: 100%;
  max-height: min(82vh, 880px);
  object-fit: contain;
  border-radius: 28px;
  border: 1px solid rgba(219, 171, 99, 0.18);
  box-shadow: var(--shadow);
  background: rgba(4, 34, 37, 0.35);
}

.lightbox-caption {
  margin-top: 0.9rem;
  color: var(--text);
  text-align: center;
}

.lightbox-close,
.lightbox-arrow-btn {
  position: absolute;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(219, 171, 99, 0.2);
  background: rgba(4, 34, 37, 0.66);
  color: var(--text);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.lightbox-close:hover,
.lightbox-arrow-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(219, 171, 99, 0.46);
  color: var(--gold-strong);
}

.lightbox-close {
  top: 1.4rem;
  right: 1.4rem;
  font-size: 1.8rem;
}

.lightbox-arrow-btn.prev {
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-arrow-btn.next {
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-arrow-btn.prev:hover,
.lightbox-arrow-btn.next:hover {
  transform: translateY(calc(-50% - 2px));
}

body.lightbox-open {
  overflow: hidden;
}

.footer-grid {
  grid-template-columns: 1.05fr 0.72fr 0.72fr 1.1fr;
}

.footer-map-card {
  background: linear-gradient(180deg, rgba(8, 36, 39, 0.88), rgba(7, 32, 35, 0.92));
  border: 1px solid rgba(219, 171, 99, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.footer-map-wrap {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(219, 171, 99, 0.12);
  min-height: 230px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-map {
  width: 100%;
  min-height: 230px;
  border: 0;
  display: block;
  filter: grayscale(0.18) contrast(1.05) saturate(0.92);
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 171, 99, 0.18);
  color: var(--gold-strong) !important;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.footer-map-link:hover {
  transform: translateY(-2px);
  border-color: rgba(219, 171, 99, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3,
  .price-grid,
  .footer-grid,
  .contact-grid,
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 80px;
  }

  .site-nav {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .brand img {
    width: 66px;
  }

  .brand-title {
    font-size: 1.45rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: calc(92vh - var(--header-h));
  }

  .hero-card {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .gallery-shell {
    padding: 1rem;
  }

  .gallery-thumbs {
    grid-auto-columns: minmax(92px, 1fr);
  }

  .video-play {
    width: 76px;
    height: 76px;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-arrow-btn {
    width: 48px;
    height: 48px;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }

  .lightbox-arrow-btn.prev {
    left: 0.6rem;
  }

  .lightbox-arrow-btn.next {
    right: 0.6rem;
  }

  .section-title {
    font-size: clamp(2.1rem, 10vw, 3.15rem);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions > * {
    width: 100%;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .brand-subtitle {
    letter-spacing: 0.16em;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 1rem;
    bottom: 1rem;
  }

  .map-placeholder {
    min-height: 340px;
  }
}


/* AT LUX custom additions */
.review-source {
  margin-top: 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.landmark-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.landmark-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(219, 171, 99, 0.10);
}

.landmark-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.landmark-list span {
  color: var(--text);
  line-height: 1.5;
}

.landmark-list strong {
  color: var(--gold-strong);
  white-space: nowrap;
  font-size: 0.95rem;
}

.map-frame-card {
  display: grid;
  gap: 1rem;
}

.map-frame-wrap {
  min-height: 430px;
}

.map-frame {
  min-height: 430px;
}

.map-frame-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 720px) {
  .landmark-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-frame-wrap,
  .map-frame {
    min-height: 340px;
  }
}


/* Home page spacing refinement */
.home-page .section.section-home {
  padding: 3.35rem 0;
}

.home-page .section.section-home.section-home-tight {
  padding-top: 2.5rem;
}

.home-page .section.section-home .section-intro {
  margin-bottom: 1.7rem;
}

.home-page .section.section-home .eyebrow {
  margin-bottom: 0.85rem;
}

.home-page .split {
  gap: 1.45rem;
}

/* Reviews carousel */
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.4rem;
}

.reviews-head .section-intro {
  margin-bottom: 0;
}

.reviews-progress {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 171, 99, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.review-slide .review-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.8rem 1.9rem;
}

.review-slide .review-card p {
  font-size: 1.02rem;
  line-height: 1.85;
}

.reviews-nav {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(219, 171, 99, 0.2);
  background: rgba(7, 32, 35, 0.92);
  color: var(--gold);
  box-shadow: var(--shadow);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.reviews-nav:hover,
.reviews-nav:focus-visible {
  transform: scale(1.04);
  border-color: rgba(219, 171, 99, 0.5);
  color: var(--gold-strong);
}

.reviews-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(219, 171, 99, 0.26);
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  cursor: pointer;
  transition: width var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.reviews-dot:hover,
.reviews-dot:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(219, 171, 99, 0.5);
}

.reviews-dot.is-active {
  width: 28px;
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 980px) {
  .home-page .section.section-home {
    padding: 3rem 0;
  }

  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-progress {
    font-size: 1.7rem;
  }
}

@media (max-width: 640px) {
  .home-page .section.section-home {
    padding: 2.6rem 0;
  }

  .home-page .section.section-home.section-home-tight {
    padding-top: 2rem;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .reviews-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    background: rgba(7, 32, 35, 0.88);
  }

  .reviews-nav.prev {
    left: 0.65rem;
  }

  .reviews-nav.next {
    right: 0.65rem;
  }

  .review-slide .review-card {
    padding: 1.4rem 1.2rem;
  }

  .review-slide .review-card p {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .reviews-progress {
    font-size: 1.45rem;
    padding: 0.55rem 0.85rem;
  }
}

/* Luxury distinction between header/footer and main content */
body {
  background:
    radial-gradient(circle at top, rgba(219, 171, 99, 0.08), transparent 28%),
    linear-gradient(180deg, #032327 0%, #042d31 52%, #032327 100%);
}

main {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 171, 99, 0.06), transparent 24%),
    linear-gradient(180deg, #102528 0%, #0d2225 48%, #0a1d20 100%);
  border-top: 1px solid rgba(219, 171, 99, 0.12);
  border-bottom: 1px solid rgba(219, 171, 99, 0.12);
  box-shadow:
    inset 0 28px 70px rgba(0, 0, 0, 0.16),
    inset 0 -28px 70px rgba(0, 0, 0, 0.16);
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 14%, transparent 86%, rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 14% 20%, rgba(219, 171, 99, 0.035), transparent 18%),
    radial-gradient(circle at 84% 72%, rgba(219, 171, 99, 0.025), transparent 20%);
}

main > section {
  position: relative;
}

main > section > .container,
main > section > .hero-inner {
  position: relative;
  z-index: 1;
}

main > section:not(.hero):not(.cta-band) {
  border-top: 1px solid rgba(219, 171, 99, 0.05);
}

main > section:not(.hero):not(.cta-band):nth-child(odd) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
}

main > section:not(.hero):not(.cta-band)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(219, 171, 99, 0.025) 50%, transparent);
  opacity: 0.5;
}

main > .hero::after {
  box-shadow: inset 0 -80px 100px rgba(10, 29, 32, 0.88);
}

.cta-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.004));
}

.footer {
  background: linear-gradient(180deg, rgba(2, 22, 24, 0.18), rgba(2, 22, 24, 0.42));
}

@media (max-width: 640px) {
  main {
    box-shadow:
      inset 0 18px 46px rgba(0, 0, 0, 0.14),
      inset 0 -18px 46px rgba(0, 0, 0, 0.14);
  }
}

/* =========================================================
   FINALNI COMPACT SPACING + HERO/FOOTER BALANS
   ========================================================= */

/* Manji razmaci između podsekcija na svim stranicama */
main > section:not(.hero):not(.page-hero):not(.hero-section):not(.intro-hero) {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

main > section > .container,
main > section > .wrapper,
main > section > .section-inner,
main > section > .content-wrap {
  row-gap: 0 !important;
}

main section h2 {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}

main section h3 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

main section .section-intro,
main section .lead,
main section p.lead,
main section .subtitle,
main section .section-text-intro {
  margin-bottom: 20px !important;
}

main section .section-intro:last-child,
main section .lead:last-child,
main section p:last-child {
  margin-bottom: 0 !important;
}

main section .grid,
main section .cards,
main section .card-grid,
main section .features-grid,
main section .apartments-grid,
main section .contact-grid,
main section .content-grid,
main section .gallery-grid,
main section .info-grid,
main section .stats-grid,
main section .two-col,
main section .three-col,
main section .split-layout,
main section .columns,
main section .list-grid {
  gap: 22px !important;
}

main section .stack,
main section .content-stack,
main section .text-stack,
main section .section-stack {
  gap: 14px !important;
}

main section .card,
main section .feature-card,
main section .apartment-card,
main section .info-card,
main section .review-card,
main section .contact-card {
  margin-bottom: 0 !important;
}

main section ul,
main section ol {
  margin-top: 10px !important;
  margin-bottom: 0 !important;
}

main section li + li {
  margin-top: 8px !important;
}

main section .section-heading,
main section .section-header {
  margin-bottom: 20px !important;
}

main section .block + .block,
main section .content-block + .content-block,
main section .info-block + .info-block,
main section .text-block + .text-block {
  margin-top: 20px !important;
}

main section .reviews-slider,
main section .reviews-track,
main section .gallery-wrap,
main section .contact-wrap {
  margin-top: 18px !important;
}

main section .pricing-table,
main section .price-table,
main section table {
  margin-top: 18px !important;
}

/* Hero: početna full-screen, ostale stranice također full-screen */
.home-page .hero,
body:not(.home-page) .hero {
  min-height: calc(100svh - var(--header-h)) !important;
}

.home-page .hero .hero-inner {
  padding: 4rem 0 5rem !important;
}

body:not(.home-page) .hero .hero-inner {
  padding: 3.2rem 0 3.6rem !important;
}

body:not(.home-page) .hero h1 {
  margin-bottom: 0.75rem !important;
}

body:not(.home-page) .hero p.lead {
  max-width: 60ch;
}

/* Footer kompaktniji gore i dolje */
footer,
.footer {
  padding-top: 1.8rem !important;
  padding-bottom: 0.9rem !important;
}

.footer-grid {
  gap: 1.1rem !important;
}

.footer-bottom,
footer .footer-bottom {
  margin-top: 0.85rem !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0 !important;
}

.footer-bottom p,
footer .footer-bottom p,
.footer p:last-child,
footer p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 992px) {
  main > section:not(.hero):not(.page-hero):not(.hero-section):not(.intro-hero) {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  main section .grid,
  main section .cards,
  main section .card-grid,
  main section .features-grid,
  main section .apartments-grid,
  main section .contact-grid,
  main section .content-grid,
  main section .gallery-grid,
  main section .info-grid,
  main section .stats-grid,
  main section .two-col,
  main section .three-col,
  main section .split-layout,
  main section .columns,
  main section .list-grid {
    gap: 18px !important;
  }

  main section .section-heading,
  main section .section-header,
  main section .section-intro,
  main section .lead,
  main section p.lead,
  main section .subtitle,
  main section .section-text-intro {
    margin-bottom: 16px !important;
  }

  .home-page .hero,
  body:not(.home-page) .hero {
    min-height: calc(100svh - var(--header-h)) !important;
  }

  body:not(.home-page) .hero .hero-inner {
    padding: 2.8rem 0 3.1rem !important;
  }

  footer,
  .footer {
    padding-top: 2.4rem !important;
    padding-bottom: 0.8rem !important;
  }

  .footer-bottom,
  footer .footer-bottom {
    margin-top: 0.75rem !important;
    padding-top: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  main > section:not(.hero):not(.page-hero):not(.hero-section):not(.intro-hero) {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  main section h2 {
    margin-bottom: 12px !important;
  }

  main section h3 {
    margin-bottom: 10px !important;
  }

  main section .section-heading,
  main section .section-header,
  main section .section-intro,
  main section .lead,
  main section p.lead,
  main section .subtitle,
  main section .section-text-intro {
    margin-bottom: 14px !important;
  }

  main section .grid,
  main section .cards,
  main section .card-grid,
  main section .features-grid,
  main section .apartments-grid,
  main section .contact-grid,
  main section .content-grid,
  main section .gallery-grid,
  main section .info-grid,
  main section .stats-grid,
  main section .two-col,
  main section .three-col,
  main section .split-layout,
  main section .columns,
  main section .list-grid {
    gap: 16px !important;
  }

  main section .block + .block,
  main section .content-block + .content-block,
  main section .info-block + .info-block,
  main section .text-block + .text-block {
    margin-top: 16px !important;
  }

  .home-page .hero,
  body:not(.home-page) .hero {
    min-height: calc(100svh - var(--header-h)) !important;
  }

  .home-page .hero .hero-inner {
    padding: 3rem 0 3.8rem !important;
  }

  body:not(.home-page) .hero .hero-inner {
    padding: 2.3rem 0 2.6rem !important;
  }

  footer,
  .footer {
    padding-top: 2.1rem !important;
    padding-bottom: 0.7rem !important;
  }

  .footer-bottom,
  footer .footer-bottom {
    margin-top: 0.65rem !important;
    padding-top: 0.6rem !important;
  }
}
@media (max-width: 768px) {
  .home-page .section-home > .container.split {
    row-gap: 14px !important;
  }
}
@media (max-width: 768px) {
  .home-page .section-home h2 {
    line-height: 1.1 !important;
  }
}
@media (max-width: 768px) {
  main > section > .container.split,
  main > section > .container.split-reverse {
    row-gap: 16px !important;
  }
}
.footer-platforms {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-platforms-title {
  margin: 0 0 0.15rem;
  color: #dbab63;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: fit-content;
  min-width: 180px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(219, 171, 99, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #f5efe6;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.platform-link:hover {
  transform: translateY(-2px);
  border-color: rgba(219, 171, 99, 0.6);
  background: rgba(219, 171, 99, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.platform-link:focus-visible {
  outline: none;
  border-color: rgba(219, 171, 99, 0.75);
  box-shadow: 0 0 0 3px rgba(219, 171, 99, 0.16);
}

.platform-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
  fill: #dbab63;
  opacity: 0.95;
}

.platform-link span:last-child {
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .footer-platforms {
    margin-top: 0.85rem;
    gap: 0.6rem;
  }

  .platform-link {
    min-width: 165px;
    padding: 0.68rem 0.92rem;
  }
}

.video-showcase {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.apartment-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #000;
}

.video-overlay {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(4, 45, 49, 0.72);
  border: 1px solid rgba(219, 171, 99, 0.28);
  color: #f5efe6;
  pointer-events: none;
}

.video-overlay strong {
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .video-overlay {
    left: 0.8rem;
    top: 0.8rem;
    padding: 0.6rem 0.85rem;
  }

  .video-overlay strong {
    font-size: 0.88rem;
  }
}

.video-showcase .video-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: auto !important;
  bottom: auto !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(4, 45, 49, 0.72);
  border: 1px solid rgba(219, 171, 99, 0.28);
  color: #f5efe6;
  pointer-events: none;
  white-space: nowrap;
}

.video-showcase .video-overlay strong {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .video-showcase .video-overlay {
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.6rem 0.85rem;
  }

  .video-showcase .video-overlay strong {
    font-size: 0.88rem;
  }
}

.video-showcase--portrait {
  max-width: 430px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.video-showcase--portrait .apartment-video--portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}

@media (max-width: 768px) {
  .video-showcase--portrait {
    max-width: min(100%, 360px);
  }
}