  :root {
    --navy: #0d1b2a;
    --deep: #162032;
    --teal: #1a6b7a;
    --teal-light: #22899b;
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --cream: #f5f0e8;
    --white: #ffffff;
    --gray: #8a9ab0;
    --light-bg: #f8f6f2;
  }

  * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
  }

  html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 70px;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
  }

  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
  }

  .text-gold{
    color: var(--gold);
  } 

  /* ── NAVBAR ── */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
    padding: 0 2rem;
  }
  #navbar.scrolled {
    background: rgba(13, 27, 42, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  }
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 200;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.08em;
  }
  .nav-brand span { 
    color: var(--gold); 
    font-style: italic; 
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin-bottom: 0rem;
  }
  .nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links .btn-nav {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.5rem 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-links .btn-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s, opacity 0.35s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 1.5rem 2rem 2rem;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .mobile-menu.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu a:last-child { border-bottom: none; }

  /* ── HERO ── */
  #hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  #hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(13, 27, 42, 0.95) 0%,  rgba(26, 58, 74, 0.7) 45%,  rgba(14, 34, 51, 0.3) 90%,  rgba(14, 34, 51, 0) 100%);
    z-index: 1;
  }

  .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
  }

  .hero-content,
  .hero-scroll {
      position: relative;
      z-index: 3;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 760px;
    animation: heroFadeIn 1.2s ease forwards;
  }
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-logo {
    width: auto;
  }
  @media (max-width: 767px) {
   .hero-logo {
      width: auto;
      height: 100px;
    } 
  }

  .hero-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.4rem 1rem;
    font-weight: 500;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0.4rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  .hero-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
  }
  .hero-stat-val span { color: var(--gold); }
  .hero-stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 0.3rem;
  }
  .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .btn-gold {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.85rem 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    display: inline-block;
  }
  .btn-gold:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.35);
  }
  .btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 0.85rem 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
    display: inline-block;
  }
  .btn-outline-white:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgb(255, 250, 250);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.7), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
  }

  /* ── SECTION COMMON ── */
  section { padding: 5rem 0; }
  .section-label {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
  }

  /* ── WHY GEORGIA ── */
  #why-georgia {
    background: var(--navy);
    color: var(--white);
  }
  #why-georgia .section-title { color: var(--white); }
  #why-georgia .section-label { color: var(--gold); }
  .georgia-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
    height: 100%;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
  }
  .georgia-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.35s ease;
  }
  .georgia-card:hover::before { height: 100%; }
  .georgia-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
    border-color: rgba(201,168,76,0.3);
  }
  .georgia-card-icon {
    font-size: 1.8rem;
    color: var(--teal-light);
    margin-bottom: 1rem;
  }
  .georgia-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 400;
  }
  .georgia-card ul {
    list-style: none;
    padding: 0;
  }
  .georgia-card ul li {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
  }
  .georgia-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.65rem;
  }
  .georgia-card ul li:last-child { border-bottom: none; }

  /* ── GENERAL INFO ── */
  #general-info { background: var(--light-bg); }
  .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
  }
  .info-cell {
    background: var(--white);
    padding: 1.8rem;
    transition: background 0.2s;
  }
  .info-cell:hover { background: #faf8f4; }
  .info-cell-label {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .info-cell-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: 400;
  }
  .info-cell-value.big {
    font-size: 2.2rem;
    font-weight: 600;
  }
  .info-cell-value.big span { color: var(--teal); }

  .facilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
  }
  .facility-tag {
    background: var(--navy);
    color: var(--white);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    font-weight: 500;
  }

  /* ── LOCATION ── */
  #location { background: var(--white); }
  .location-map-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--deep));
    background-image: url('https://litzanchor.ge/assets/images/kvariati.jpg');
    background-size: cover;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .location-map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,107,122,0.25) 0%, transparent 70%);
  }
  .location-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    text-align: left;
    color: var(--white);
    padding: 1rem 1.5rem;
  }
  .location-badge i { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.75rem; display: block; }
  .location-badge p { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
  .location-badge h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--white); }

  .location-fact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .location-fact:last-child { border-bottom: none; }
  .location-fact-icon {
    width: 36px;
    height: 36px;
    background: var(--gray);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  .location-fact-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
  }
  .location-fact-text span {
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.5;
  }

  /* ── ADVANTAGES ── */
  #advantages { background: var(--light-bg); }
  .advantage-item {
    display: flex;
    height: 140px;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--white);
    margin-bottom: 1px;
    transition: box-shadow 0.2s, transform 0.2s;
    border-left: 3px solid transparent;
  }
  .advantage-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transform: translateX(4px);
    border-left-color: var(--gold);
  }
  .advantage-item:hover .advantage-num {
    color: var(--gold);
  }
  .advantage-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: rgba(13,27,42,0.08);
    line-height: 1;
    min-width: 2.5rem;
    flex-shrink: 0;
  }
  .advantage-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
  }
  .advantage-content p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 768px) {
    .advantage-item {
      height: auto !important;
      min-height: auto !important;
    }
  }


  /* ── MARKET ── */
  #market { background: var(--navy); color: var(--white); }
  #market .section-title { color: var(--white); }
  #market .section-label { color: var(--gold); }
  .competitor-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
  }
  .competitor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
  }
  .competitor-card.featured {
    border-color: rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.06);
  }
  .competitor-card.featured:hover { border-color: var(--gold); }
  .competitor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.3rem;
  }
  .competitor-card.featured .competitor-name { color: var(--gold-light); }
  .competitor-stars { color: var(--gold); font-size: 0.7rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
  .competitor-location {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.5rem;
  }
  .competitor-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .competitor-card.featured .competitor-price { color: var(--gold); }
  .competitor-card:not(.featured) .competitor-price { color: rgba(255,255,255,0.5); }
  .competitor-per-sqm {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .best-value-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    margin-top: 1rem;
  }

  /* ── CONTACT ── */
  #contact { background: var(--cream); }
  .contact-box {
    background: var(--navy);
    padding: 3.5rem;
    color: var(--white);
  }
  .contact-box .section-title { color: var(--white); }
  .contact-box .section-label { color: var(--gold); }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .contact-item:last-child { border-bottom: none; }
  .contact-item i {
    font-size: 1.2rem;
    color: var(--gold);
    width: 28px;
    text-align: center;
  }
  .contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .contact-item a:hover { color: var(--gold); }
  .contact-form-side { padding: 2rem 0 2rem 2rem; }
  @media (max-width: 767px) { .contact-form-side { padding: 0; } }
  .form-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 0.4rem;
  }
  .form-control {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    background: var(--white);
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26,107,122,0.1);
    outline: none;
  }
  textarea.form-control { resize: none; }

  /* ── FOOTER ── */
  footer {
    background: #07111a;
    color: rgba(255,255,255,0.35);
    padding: 2rem;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  footer a { color: var(--gold); text-decoration: none; }

  /* ── LANG SWITCHER ── */
  .lang-switcher {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-left: 1rem;
  }
  .lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.55);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.1em;
    padding: 0.28rem 0.55rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1;
  }
  .lang-btn:hover {
    border-color: rgba(201,168,76,0.5);
    color: var(--gold-light);
  }
  .lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
  }
  /* mobile lang switcher */
  .mobile-lang {
    display: flex;
    gap: 6px;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.5rem;
  }
  .mobile-lang .lang-btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.65rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .contact-box { padding: 2.5rem; }
  }
  @media (max-width: 767px) {
    section { padding: 3.5rem 0; }
    .info-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
    .contact-box { padding: 2rem; }
  }
  @media (max-width: 480px) {
    .nav-brand { font-size: 1.1rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta a { text-align: center; }
  }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Gallery ─────────────────────────────────── */
  
  #gallery { background: var(--navy); color: var(--white); }
  #gallery .section-title { color: var(--white); }
  #gallery .section-label { color: var(--gold); }

  .gallery-assets {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 5px;
  }

  .gallery-assets-item {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      aspect-ratio: 4 / 3;
      background: #1a1f2e; /* placeholder while thumb loads */
  }

  .gallery-assets-item a {
      display: block;
      width: 100%;
      height: 100%;
  }

  .gallery-assets-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease, filter 0.45s ease;
      filter: brightness(0.88);
  }

  /* dark overlay on hover */
  .gallery-assets-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 14, 26, 0.6) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
  }

  .gallery-assets-item:hover img {
      transform: scale(1.07);
      filter: brightness(1);
  }

  .gallery-assets-item:hover::after {
      opacity: 1;
  }

  /* zoom icon */
  .gallery-assets-item .zoom-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.6);
      opacity: 0;
      color: #c9a84c; /* gold */
      font-size: 32px;
      line-height: 1;
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
      z-index: 2;
  }

  .gallery-assets-item:hover .zoom-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
  }

  /*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--gold);
    width: 50px;
    height: 50px;
    transition: all 0.4s;
  }

  .scroll-top i {
    font-size: 24px;
    color: var(--navy);
    line-height: 0;
  }

  .scroll-top:hover {
    background-color: color-mix(in srgb, var(--gold), transparent 20%);
    color: var(--navy);
  }

  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }

  .litz-tooltip {
    display: block;
    position: absolute;
    border:1px solid #333;
    background-color:#161616;
    opacity: 0.8;
    border-radius: 5px;
    padding: 7px;
    color:#fff;
    font-family: 'Helvetica Neue' !important;
    font-size: 16px;
    font-weight: bolder;
  }

    @media (max-width: 480px) {
      #map { height: 500px; }
  }

  .social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.social-btn:hover {
    background: none;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}