:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: rgba(10, 10, 10, 0.76);
  --border: rgba(212, 175, 55, 0.18);
  --border-soft: rgba(212, 175, 55, 0.12);
  --gold: #d4af37;
  --gold-soft: #f0d77d;
  --text: #f5f1e6;
  --muted: rgba(245, 241, 230, 0.72);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #040404 0%, #090909 45%, #0b0b0b 100%);
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, rgba(0, 0, 0, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.02) 0%, rgba(0, 0, 0, 0) 50%);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

/* 1. TOPBAR */
.topbar {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  margin: 1rem auto;
  width: calc(100% - 2rem);
  max-width: 1140px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-k {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.1);
}

.brand-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

.gold-text {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav a {
  padding: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
  border-color: rgba(212, 175, 55, 0.1);
}

.nav .nav-cta {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid var(--border);
  color: var(--gold);
  font-weight: 600;
}

.nav .nav-cta:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.1) 100%);
  color: var(--text);
  border-color: var(--gold);
}

/* 2. HERO SECTION */
.hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 1.5rem;
  margin-top: 1rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
}

.hero-shell h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
}

.hero-actions-desktop {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8975a 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
}

.btn-outline {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold);
}

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

.btn-full {
  width: 100%;
}

.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.5rem;
}

.hero-points li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-points li::before {
  content: "✨";
  font-size: 0.9rem;
}

/* 3. BOOKING WIDGET */
.float-card {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-widget-card {
  width: 100%;
}

.widget-header {
  padding: 1.75rem;
  background: rgba(212, 175, 55, 0.03);
  border-bottom: 1px solid var(--border-soft);
}

.widget-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.widget-header p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.5px;
}

.widget-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.25);
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 1rem 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  outline: none;
}

.tab-btn:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.02);
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
}

.widget-form {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tab-content {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}

.tab-content.active {
  display: flex;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  width: 100%;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
  background: rgba(0, 0, 0, 0.6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* 4. SERVICES GRID */
.services {
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-head h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-head p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
}

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

.offer-card {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--border-soft);
  border-radius: 1.25rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: var(--border);
  background: rgba(15, 15, 15, 0.8);
  box-shadow: var(--shadow-soft);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  width: fit-content;
}

.offer-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
}

.offer-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  flex-grow: 1;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.service-cta:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* 5. FLOW SECTION */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.flow-step {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.flow-step:hover {
  border-color: var(--border-soft);
  background: rgba(10, 10, 10, 0.8);
}

.step-num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.flow-step h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.flow-step p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

/* 6. GUARANTEE / SHIELD SECTION */
.guarantee-inner {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 4rem 2.5rem;
  background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.3) 70%),
              rgba(10, 10, 10, 0.9);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

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

.shield-icon {
  font-size: 3rem;
  line-height: 1;
}

.guarantee-inner h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.85rem;
}

.lead-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
}

.guarantee-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  color: var(--muted);
}

/* 7. FOOTER */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 4rem 1.5rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.footer-legal {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

.site-footer h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-contact p {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}

/* 8. CONSULTATION MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.modal-card {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-header {
  padding: 2rem 2rem 1rem 2rem;
}

.modal-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.modal-header p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.modal-body {
  padding: 1rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
}

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

.summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.summary-value {
  font-size: 0.88rem;
  font-weight: 500;
  text-align: right;
}

.modal-actions {
  padding: 0 2rem 2rem 2rem;
}

.modal-disclaimer {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

/* 9. RESPONSIVENESS */
@media (max-width: 900px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1rem;
  }
  
  .hero-copy {
    text-align: center;
    align-items: center;
  }
  
  .hero-points {
    justify-content: center;
    width: 100%;
  }
  
  .hero-actions-desktop {
    display: none; /* Hide on mobile in favor of widget */
  }

  .offer-card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* 10. ELITE SHOWCASE GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  height: 350px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 0.4s ease;
}

.gallery-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.gallery-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  transform: translateY(4px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover interactions */
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

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

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.95) 100%);
}

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

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .gallery-item {
    height: 280px;
  }
}

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

/* AUTOCOMPLETE WRAPPERS & DROPDOWNS */
.autocomplete-wrapper {
  position: relative;
  width: 100%;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-top: 0.5rem;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: var(--shadow);
  display: none;
}

.autocomplete-dropdown.active {
  display: block;
}

.autocomplete-group-title {
  padding: 0.75rem 1rem 0.25rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(212, 175, 55, 0.03);
}

.autocomplete-item {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

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

.autocomplete-item:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.autocomplete-icon {
  font-size: 1rem;
}

.autocomplete-name {
  flex-grow: 1;
  font-weight: 500;
}

.autocomplete-code {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
