:root {
  --gold-50: #fbf8eb;
  --gold-100: #f6eecf;
  --gold-300: #dec16b;
  --gold-400: #d0a53f;
  --gold-500: #d4af37;
  --gold-600: #aa8410;
  --gold-700: #88650f;
  --gold-950: #352207;
  --dark-800: #1a1a1a;
  --dark-900: #0d0d0d;
  --dark-950: #060606;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --white: #ffffff;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-heading: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--dark-950);
  color: #f3f4f6;
  font-family: var(--font-sans);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.font-heading {
  font-family: var(--font-heading);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #f6eecf 0%, #d4af37 50%, #88650f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.glass-panel {
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.glass-panel-hover {
  transition: all 0.3s ease;
}

.glass-panel-hover:hover {
  background: rgba(20, 20, 20, 0.85);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.15);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.45);
}

.btn-gold:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.05);
}

.section-label {
  color: var(--gold-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--white);
  margin: 0;
}

.section-rule {
  width: 4rem;
  height: 0.25rem;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.section-rule-left {
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

svg.icon,
.icon {
  width: 1em;
  height: 1em;
  max-width: 1.5rem;
  max-height: 1.5rem;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.nav-phone .icon,
.menu-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
  max-width: 1.25rem;
  max-height: 1.25rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.2s ease;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar.open:not(.scrolled) {
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand img {
  width: 64px;
  height: auto;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.1;
}

.brand-title span {
  color: var(--gold-500);
}

.brand-sub {
  margin: 0;
  font-size: 9px;
  color: rgba(222, 193, 107, 0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.nav-links a {
  color: var(--gray-300);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

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

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-400);
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-phone:hover {
  color: var(--gold-300);
}

.nav-phone .icon {
  width: 1rem;
  height: 1rem;
  animation: bounce 1s infinite;
}

.nav-book {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  border-radius: 0.375rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.nav-book:hover {
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
}

.menu-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--gray-300);
  padding: 0.5rem;
  cursor: pointer;
}

.menu-btn:hover {
  color: var(--gold-400);
}

.menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.menu-btn .icon-close {
  display: none;
}

.navbar.open .menu-btn .icon-menu {
  display: none;
}

.navbar.open .menu-btn .icon-close {
  display: block;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
  transition: all 0.3s ease;
}

.navbar.open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-inner {
  padding: 0.5rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: var(--gray-300);
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--gold-400);
}

.mobile-menu-footer {
  padding-top: 1rem;
  border-top: 1px solid #1f2937;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-book {
  text-align: center;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  border-radius: 0.375rem;
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .menu-btn,
  .mobile-menu {
    display: none;
  }

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 0 3rem;
  overflow: hidden;
  background: radial-gradient(circle at center, var(--dark-900), #000 70%);
}

.hero-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(120px);
  animation: pulse 8s ease-in-out infinite;
}

.hero-glow-1 {
  top: 25%;
  left: 25%;
  background: rgba(170, 132, 16, 0.1);
}

.hero-glow-2 {
  bottom: 33%;
  right: 25%;
  background: rgba(212, 175, 55, 0.05);
  animation-duration: 10s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(53, 34, 7, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge .icon {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
  margin: 1.5rem 0;
}

.hero-copy {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 36rem;
  margin: 0;
}

.hero-copy strong {
  color: var(--white);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-meta-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  background: var(--dark-800);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.hero-meta-icon .icon {
  width: 1rem;
  height: 1rem;
}

.hero-meta span {
  font-size: 0.75rem;
  color: var(--gray-300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}

.hero-media-glow {
  position: absolute;
  inset: -6px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--gold-500), transparent);
  opacity: 0.3;
  filter: blur(8px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-media-frame {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--dark-900);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-media-frame:hover img {
  transform: scale(1.05);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.3), transparent);
}

.hero-stats {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: rgba(212, 175, 55, 0.2);
}

.hero-stats p {
  margin: 0;
}

.hero-stats .label {
  font-size: 10px;
  color: var(--gold-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stats .value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--white);
}

.hero-stats .rating {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-500);
  text-align: right;
}

.hero-stats .rating-label {
  font-size: 9px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-align: right;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-media {
    aspect-ratio: 1;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 2rem;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
  }
}

/* Services */
.services {
  position: relative;
  padding: 4rem 0;
  background: var(--dark-950);
  overflow: hidden;
}

.services-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-header p:last-child {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin: 0;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

.service-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.5rem);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--dark-900);
  border: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.service-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon .icon {
  transform: rotate(12deg) scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--gold-400);
}

.service-card p {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Gallery */
.gallery {
  position: relative;
  padding: 4rem 0;
  background: var(--dark-900);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-header p:last-child {
  color: var(--gray-400);
  margin: 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--dark-800);
  color: var(--gray-400);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: var(--white);
  border-color: rgba(212, 175, 55, 0.2);
}

.filter-btn.active {
  color: #000;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  border-color: transparent;
  box-shadow: 0 10px 15px rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.gallery-grid {
  display: grid;
  gap: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark-950);
  cursor: pointer;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  transition: border-color 0.5s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-eye {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gallery-eye span {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.9);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.75);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-eye span {
  transform: scale(1);
  opacity: 1;
}

.gallery-meta {
  transform: translateY(1rem);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-meta {
  transform: translateY(0);
}

.gallery-meta .cat {
  display: block;
  font-size: 10px;
  color: var(--gold-400);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.gallery-meta h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem;
}

.gallery-meta p {
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 300;
  margin: 0;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--gray-400);
  border-radius: 9999px;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-content {
  width: min(56rem, 100%);
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--dark-950);
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-info {
  text-align: center;
  max-width: 36rem;
}

.lightbox-info .cat {
  font-size: 10px;
  color: var(--gold-400);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.lightbox-info h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.25rem 0;
}

.lightbox-info p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin: 0;
}

/* Contact */
.contact {
  position: relative;
  padding: 4rem 0;
  background: var(--dark-900);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

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

.contact-intro p:last-child {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.contact-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 {
  margin: 0 0 0.25rem;
  font-size: 10px;
  color: var(--gold-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card a {
  color: var(--white);
  font-weight: 700;
}

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

.contact-card .sub {
  display: block;
  color: var(--gray-400);
  font-weight: 400;
  font-size: 0.75rem;
}

.form-panel {
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .form-panel {
    padding: 2.5rem;
  }
}

.form-success {
  display: none;
  min-height: 25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.form-success.show {
  display: flex;
}

.form-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.form-success p {
  color: var(--gray-400);
  font-size: 0.875rem;
  max-width: 20rem;
  margin: 0;
}

.form-reset {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.5rem;
  cursor: pointer;
}

.form-reset:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.05);
}

#booking-form.hidden {
  display: none;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.field label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--dark-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray-500);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-500);
}

.field textarea {
  resize: none;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--dark-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.dropdown-btn .placeholder {
  color: var(--gray-500);
}

.dropdown-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.dropdown.open .dropdown-btn .icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background: var(--dark-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: 20;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.4);
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu button {
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.dropdown-menu button:hover {
  background: var(--gold-500);
  color: #000;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    align-items: stretch;
  }
}

/* Location */
.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 1rem;
}

.location-header {
  text-align: center;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-map {
  width: min(70%, 849px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.location-map img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Footer */
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 50px;
  height: 50px;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer-brand span em {
  font-style: normal;
  color: var(--gold-500);
}

.footer-copy {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 24rem;
  margin: 0;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-400);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-hours div {
  display: flex;
  gap: 1rem;
}

.footer-hours strong {
  margin-left: auto;
  color: var(--white);
  font-weight: 600;
}

.footer-hours .closed {
  color: var(--gold-500);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-links .icon,
.footer-links svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 10px;
  color: var(--gray-500);
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 2rem;
  }
}

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15%);
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-950);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-800);
  border-radius: 4px;
  border: 2px solid var(--dark-950);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-500);
}
