/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #b8922a;
  --gold-light: #d4a843;
  --gold-dark: #8a6d1e;
  --gold-text: #5e3d00;
  --dark: #faf7f2;
  --dark2: #f2ece2;
  --dark3: #e8e0d2;
  --text: #1c1510;
  --text-muted: #52422f;
  --white: #ffffff;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1rem;
}

.section-tag.light {
  color: var(--gold-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ===================== BUTTONS ===================== */
.btn-gold {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-gold.small {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(20, 14, 8, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(184, 146, 42, 0.25);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 42px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  font-weight: 600;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(184, 146, 42, 0.4);
  color: var(--white);
}

.nav-links a.nav-cta-outline {
  border: 1px solid rgba(184, 146, 42, 0.5);
  color: var(--gold);
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  font-weight: 500;
}

.nav-links a.nav-cta-outline::after {
  display: none;
}

.nav-links a.nav-cta-outline:hover {
  background: rgba(184, 146, 42, 0.1);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
  font-style: italic;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
  letter-spacing: 0.05em;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s infinite;
}

.slide-dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===================== AWARDS BAR ===================== */
.awards-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1.5rem 2rem;
}

.awards-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.award-item img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0.9);
}

.award-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.2);
}

.award-stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold-text);
  line-height: 1;
  font-weight: 600;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===================== ABOUT ===================== */
.about-section {
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-text .lead {
  color: var(--text);
  font-size: 1.1rem;
  font-style: italic;
}

blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text);
  font-style: italic;
}

blockquote cite {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  margin-top: 0.5rem;
}

.best-value {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  color: var(--text);
  font-size: 0.95rem;
}

.about-images {
  position: relative;
  height: 550px;
}

.about-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
  height: 75%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-img-sm {
  position: absolute;
  width: 45%;
  height: 40%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--dark);
}

.about-img-sm.top {
  right: 0;
  top: 10%;
}

.about-img-sm.bot {
  right: 5%;
  bottom: 0;
}

/* ===================== LOCATION ===================== */
.location-section {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.location-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.85));
}

.location-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.location-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.location-content p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.location-facts {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.loc-fact {
  text-align: center;
}

.loc-fact strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.loc-fact span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== ROOMS ===================== */
.rooms-section {
  background: var(--dark2);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rooms-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.bed-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.bed-opt {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--text-muted);
  background: transparent;
  letter-spacing: 0.03em;
}

.bed-opt.active {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold);
}

.room-card {
  background: var(--dark3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 168, 76, 0.3);
}

.room-card.featured {
  border-color: rgba(201, 168, 76, 0.4);
}

.room-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  z-index: 5;
}

.room-img {
  height: 220px;
  overflow: hidden;
}

.room-img img {
  transition: transform 0.6s ease;
}

.room-card:hover .room-img img {
  transform: scale(1.08);
}

.room-info {
  padding: 1.8rem;
}

.room-info h3 {
  margin-bottom: 0.8rem;
}

.room-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.room-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(201, 168, 76, 0.07);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

/* ===================== SERVICES ===================== */
.services-section {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  background: var(--dark3);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h4 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== BREAKFAST ===================== */
.breakfast-section {
  background: var(--dark2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.8rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  height: 200px;
}

.gallery-item.tall {
  grid-row: span 2;
  height: auto;
  min-height: 408px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  transition: transform 0.6s ease;
}

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

/* ===================== BAR ===================== */
.bar-section {
  background: var(--dark);
}

.bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bar-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 0.8rem;
}

.bar-img-main {
  grid-column: span 2;
  overflow: hidden;
  border-radius: 4px;
}

.bar-img-sm {
  overflow: hidden;
  border-radius: 4px;
}

.bar-img-main img,
.bar-img-sm img {
  transition: transform 0.6s ease;
}

.bar-gallery:hover img {
  transform: scale(1.04);
}

.bar-text h2 {
  margin-bottom: 1.5rem;
}

.bar-text .lead {
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1rem;
}

.bar-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.bar-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bar-feat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 0.8rem 1rem;
  border-radius: 4px;
}

.bar-feat span {
  font-size: 1.3rem;
}

/* ===================== LOBBY ===================== */
.lobby-section {
  background: var(--dark2);
}

.lobby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.lobby-item {
  height: 220px;
  overflow: hidden;
  border-radius: 4px;
}

.lobby-item img {
  transition: transform 0.6s ease;
}

.lobby-item:hover img {
  transform: scale(1.07);
}

/* ===================== CONTACT ===================== */
.contact-section {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-text h2 {
  margin-bottom: 1rem;
}

.contact-text>p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.5rem;
  border-radius: 4px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.cc-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-card div {
  display: flex;
  flex-direction: column;
}

.contact-card strong {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-card a {
  color: var(--text);
  font-size: 1rem;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-card span {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-map {
  height: 450px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) hue-rotate(180deg);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo img {
  height: 70px;
  width: auto;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-text);
}

.footer-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 2;
}

.footer-info a {
  color: var(--gold-text);
  font-weight: 600;
}

.footer-info strong {
  color: var(--text);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: top;
  }
}

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

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

/* ===================== NEARBY ===================== */
.nearby-section {
  background: var(--dark);
}

.love-strip {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.love-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 1.2rem 2rem;
  min-width: 140px;
  transition: var(--transition);
}

.love-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.5);
}

.love-item span {
  font-size: 1.8rem;
}

.love-item p {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  text-align: center;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.nearby-col {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}

.nearby-col:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.nearby-col-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  background: rgba(201, 168, 76, 0.07);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nc-icon {
  font-size: 1.3rem;
}

.nearby-col-header h4 {
  font-size: 0.9rem;
  color: var(--gold-text);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nearby-list {
  padding: 0.5rem 0;
}

.nearby-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.nearby-item:last-child {
  border-bottom: none;
}

.nearby-item:hover {
  background: rgba(201, 168, 76, 0.05);
}

.ni-name {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ni-dist {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-text);
  background: rgba(94, 61, 0, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.ni-highlight .ni-name {
  color: var(--text);
  font-weight: 500;
}

.ni-highlight .ni-dist {
  background: rgba(94, 61, 0, 0.15);
  color: var(--gold-text);
}

/* ===================== AMENITIES ===================== */
.amenities-section {
  background: var(--dark2);
}

.amenity-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.atab {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.3rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.atab:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--text);
}

.atab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}

.amenity-panels {
  min-height: 220px;
}

.amenity-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}

.amenity-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem;
}

.am-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--dark3);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 0.65rem 0.85rem;
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition);
  overflow: hidden;
  word-break: break-word;
}

.am-item:hover {
  border-color: rgba(201, 168, 76, 0.25);
  color: var(--text);
  background: rgba(201, 168, 76, 0.05);
}

.am-item> :first-child {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.am-item span {
  line-height: 1.3;
  overflow-wrap: break-word;
}

.amenity-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.lang-card {
  background: var(--dark3);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 6px;
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.lang-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.lang-flag {
  font-size: 2.5rem;
}

.lang-card strong {
  color: var(--text);
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

.lang-card span {
  font-size: 0.75rem;
  color: var(--gold-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===================== EU BANNER ===================== */
.eu-banner-wrap {
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eu-banner-img {
  width: auto;
  height: auto;
  max-width: 600px;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.eu-banner-wrap a:hover .eu-banner-img {
  opacity: 0.85;
}

/* ===================== RADIO BANNER ===================== */
.radio-banner-wrap {
  background: linear-gradient(135deg, #e8f6f9 0%, #d0eef5 50%, #e8f6f9 100%);
  border-top: 1px solid rgba(0, 160, 190, 0.2);
  border-bottom: 1px solid rgba(0, 160, 190, 0.2);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.radio-banner-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 180, 210, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: radioPulse 4s ease-in-out infinite;
}

@keyframes radioPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

#radio-banner-link {
  display: block;
  width: 50%;
  max-width: 700px;
  transition: transform 0.4s ease;
  text-decoration: none;
}

#radio-banner-link:hover {
  transform: scale(1.02);
}

/* Text block above image */
.radio-banner-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 160, 190, 0.2);
  border-radius: 8px 8px 0 0;
  padding: 1rem 1.4rem;
}

.radio-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
  animation: musicBounce 1.5s ease-in-out infinite alternate;
}

@keyframes musicBounce {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.18);
  }
}

.radio-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0a4a5e;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.radio-banner-sub {
  font-size: 0.78rem;
  color: #3a6a7a;
  line-height: 1.5;
}

.radio-banner-cta {
  display: inline-block;
  flex-shrink: 0;
  background: linear-gradient(135deg, #00a0be, #006f8a);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 140, 180, 0.35);
  transition: box-shadow 0.3s;
}

#radio-banner-link:hover .radio-banner-cta {
  box-shadow: 0 6px 20px rgba(0, 140, 180, 0.55);
}

.radio-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0 0 6px 6px;
}

@media (max-width: 768px) {
  #radio-banner-link {
    width: 90%;
    max-width: none;
  }

  .radio-banner-text {
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .radio-banner-title {
    font-size: 1rem;
  }

  .radio-banner-cta {
    width: 100%;
    text-align: center;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    gap: 3rem;
  }

  .about-images {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 242, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .nav-links a {
    color: var(--text) !important;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    height: 350px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bar-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.tall {
    height: 200px;
    grid-row: span 1;
    min-height: auto;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .lobby-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .award-divider {
    display: none;
  }

  .location-facts {
    gap: 2rem;
  }

  .awards-inner {
    gap: 1rem;
  }

  .nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 4rem 0;
  }

  .bar-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bar-img-main {
    grid-column: span 1;
  }

  .languages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }
}