:root {
  --brand-obsidian: #0b0c10;
  --brand-carbon: #151820;
  --brand-graphite: #222733;
  --brand-iron: #2f3747;
  --brand-gold: #b68b4c;
  --brand-champagne: #f3d9a4;
  --brand-olive: #7e8a6a;
  --brand-mist: #cfd5df;
  --brand-cream: #f8f2e9;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--brand-mist);
  background:
    radial-gradient(circle at 10% 10%, rgba(182, 139, 76, 0.12), transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(126, 138, 106, 0.16), transparent 55%),
    linear-gradient(160deg, #0a0c11 0%, #121624 42%, #0d1018 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: var(--brand-cream);
}

a {
  color: inherit;
}

.navbar-parkway {
  background: rgba(12, 14, 20, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.navbar-brand img,
.footer-logo {
  height: 78px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-champagne) !important;
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  width: 100%;
}

.hero-logo {
  max-width: min(90vw, 520px);
  height: auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 8, 12, 0.85) 20%, rgba(18, 22, 36, 0.55));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(182, 139, 76, 0.25), transparent 45%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.section-title {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-champagne);
  font-size: 0.95rem;
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--brand-gold);
}

.card-elevated {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(21, 24, 32, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.card-elevated .card-img-top {
  width: 100%;
  height: clamp(180px, 26vw, 260px);
  object-fit: cover;
  display: block;
}

.card-elevated .card-title {
  color: var(--brand-cream);
}

.card-elevated .card-text,
.card-elevated ul {
  color: rgba(207, 213, 223, 0.9);
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-tile {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 10;
  max-height: 260px;
}

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

.badge-parkway {
  background: rgba(182, 139, 76, 0.12);
  color: var(--brand-champagne);
  border: 1px solid rgba(182, 139, 76, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
}

.highlight-panel {
  background: rgba(20, 24, 33, 0.85);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.callout {
  background: linear-gradient(135deg, rgba(21, 24, 32, 0.92), rgba(34, 39, 51, 0.92));
  border-radius: 24px;
  border: 1px solid rgba(182, 139, 76, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.btn-parkway {
  background: linear-gradient(135deg, var(--brand-champagne), var(--brand-gold));
  border: 0;
  color: #2b2316;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
}

.btn-parkway:hover {
  color: #1c150b;
  filter: brightness(1.05);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 2rem;
}

.section-spacing {
  padding: 5rem 0;
}

.section-dark {
  background: rgba(10, 12, 17, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card {
  background: rgba(17, 21, 28, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
}

.stat-card h3 {
  color: var(--brand-champagne);
  font-size: 2.1rem;
}

.footer {
  background: #0a0c11;
  color: rgba(255, 255, 255, 0.7);
}

.nav-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-tabs .nav-link {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  border: 0;
  padding: 1rem 1.5rem;
}

.nav-tabs .nav-link.active {
  color: var(--brand-champagne);
  background: rgba(18, 22, 32, 0.9);
  border-bottom: 2px solid var(--brand-gold);
}

.room-panel {
  border-radius: 20px;
  background: rgba(17, 21, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.room-gallery {
  display: grid;
  gap: 1rem;
}

.room-gallery > img {
  max-height: 320px;
}

.room-gallery img {
  border-radius: 16px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.room-gallery .row img {
  height: 160px;
}

@media (max-width: 991px) {
  .room-gallery img {
    height: 200px;
  }

  .room-gallery .row img {
    height: 150px;
  }
}

@media (max-width: 767px) {
  .room-gallery img {
    height: 180px;
  }

  .room-gallery .row img {
    height: 140px;
  }
}

.amenities-list {
  columns: 2;
  column-gap: 2rem;
}

.amenities-list li {
  break-inside: avoid;
  margin-bottom: 0.6rem;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 2rem;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 1.8rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-grid {
  display: grid;
  gap: 1.5rem;
}

.menu-section {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(18, 22, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-name {
  color: var(--brand-cream);
  font-weight: 600;
}

.menu-price {
  color: var(--brand-champagne);
  font-weight: 600;
  white-space: nowrap;
}

.menu-price.menu-price-multi {
  white-space: normal;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.events-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.event-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-image {
  width: 100%;
  height: clamp(180px, 26vw, 250px);
  object-fit: cover;
  display: block;
}

.event-content {
  padding: 1.25rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.event-pill {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-champagne);
  border: 1px solid rgba(243, 217, 164, 0.45);
  background: rgba(243, 217, 164, 0.08);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}

.footer a {
  color: var(--brand-champagne);
  text-decoration: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.15s;
}

.fade-up.delay-2 {
  animation-delay: 0.3s;
}

.fade-up.delay-3 {
  animation-delay: 0.45s;
}

.stagger-grid > * {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease forwards;
}

.stagger-grid > :nth-child(1) {
  animation-delay: 0.1s;
}

.stagger-grid > :nth-child(2) {
  animation-delay: 0.2s;
}

.stagger-grid > :nth-child(3) {
  animation-delay: 0.3s;
}

.stagger-grid > :nth-child(4) {
  animation-delay: 0.4s;
}

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

@media (max-width: 991px) {
  .hero {
    min-height: 60vh;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 52vh;
  }

  .section-spacing {
    padding: 3.5rem 0;
  }
}
