body {
font-family:'Inter',sans-serif;
}


h1,h2,h3 {
font-family:'Playfair Display',serif;
}


.hero {

background:
linear-gradient(
rgba(0,0,0,.45),
rgba(0,0,0,.55)
),
url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=2000");

background-size:cover;
background-position:center;

}


.glass {

background:rgba(255,255,255,.15);
backdrop-filter:blur(15px);

}


.card {

transition:.3s;

}


.card:hover {

transform:translateY(-8px);

}


.review-scroll::-webkit-scrollbar {

width:8px;

}


.review-scroll::-webkit-scrollbar-thumb {

background:#0f766e;
border-radius:20px;

}

/* ===== Compact mobile navigation and hero spacing ===== */
@media (max-width: 767px) {

  nav .max-w-7xl {
    padding-top: .15rem !important;
    padding-bottom: 0 !important;
  }

  nav .glass {
    padding: .55rem 1rem !important;
    border-radius: 1rem !important;
    background: rgba(15, 23, 42, .72) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  nav .text-xl {
    font-size: 1rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
  }

  .hero .text-center {
    transform: translateY(-40px);
  }

  .hero {
    background-position: center center;
  }
}

/* ===== Final mobile hero refinements ===== */
@media (max-width: 767px) {

  /* The large hero title is reduced slightly for better balance. */
  #home h1 {
    font-size: 4.5rem !important;
    line-height: .95 !important;
    margin-bottom: .75rem !important;
  }

  /* Tighten the subtitle spacing. */
  #home h2 {
    margin-bottom: 1.25rem !important;
  }

  /* Bring the description and buttons closer together. */
  #home .hero-description {
    margin-bottom: 1.4rem !important;
  }

  #home .flex.flex-wrap {
    gap: .85rem !important;
  }

  /* Remove the duplicate mobile logo bar; the hero title already shows the name. */
  #siteNav {
    display: none !important;
  }

  /* Rebalance the hero after hiding the mobile navigation. */
  .hero .text-center {
    transform: translateY(-20px) !important;
  }
}

/* ===== Final title and location-line polish ===== */
@media (max-width: 767px) {

  /* Slightly smaller hero title for better mobile balance. */
  #home h1 {
    font-size: 4.2rem !important;
    line-height: .94 !important;
  }

  /* Keep the location line elegant and on one line. */
  #home .text-center > p:first-child {
    font-size: clamp(.62rem, 2.7vw, .82rem) !important;
    line-height: 1.3 !important;
    letter-spacing: .26em !important;
    white-space: nowrap;
    margin-bottom: 1.15rem !important;
  }
}
