/* =====================================================================
   Vegas Villas — faithful static rebuild of the Next.js source
   Fonts: Montserrat (sans) + Cormorant Garamond (serif)
   ===================================================================== */

:root {
  --gold: #c9a058;
  --gold-light: #d4b06a;
  --gold-dark: #b08d45;
  --bg: #0a0a0a;
  --cream: #f5f0e8;
  --warm-white: #faf8f5;
  --charcoal: #1a1a1a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: #fff;
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { display: block; }

::selection { background: rgba(201,160,88,0.3); color: var(--warm-white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width:640px){ .wrap{ padding: 0 32px; } }
@media (min-width:1024px){ .wrap{ padding: 0 48px; } }
.wrap--narrow { max-width: 768px; }

.i { font-style: italic; }

/* ---------- shared buttons ---------- */
.btn-gold, .btn-ghost, .btn-outline-gold, .btn-ink, .btn-ink-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; padding: 16px 32px; border-radius: 3px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.4s ease; white-space: nowrap; position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold); color: #0a0a0a; }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { background: rgba(255,255,255,0.05); color: #fff; border-color: rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.btn-outline-gold { padding: 10px 24px; font-size: 12px; color: var(--gold); border-color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: #0a0a0a; }
.btn-ink { background: #0a0a0a; color: var(--gold); padding: 16px 40px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.btn-ink:hover { background: #1a1a1a; transform: translateY(-2px); }
.btn-ink-outline { background: transparent; color: #0a0a0a; border: 2px solid #0a0a0a; padding: 15px 40px; }
.btn-ink-outline:hover { background: rgba(10,10,10,0.08); }

/* shimmer sweep on luxury buttons */
.btn-gold::before, .btn-ghost::before, .btn-outline-gold::before, .btn-ink::before, .btn-ink-outline::before {
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transition: left 0.5s ease;
}
.btn-gold:hover::before, .btn-ghost:hover::before, .btn-outline-gold:hover::before, .btn-ink:hover::before, .btn-ink-outline:hover::before { left: 100%; }

.eyebrow {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
@media (min-width:640px){ .eyebrow{ font-size: 11px; } }
.eyebrow--dark { color: rgba(10,10,10,0.5); }

.link-underline, .link-plain {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); padding-bottom: 4px; border-bottom: 1px solid transparent; transition: 0.3s;
}
.link-underline:hover { border-bottom-color: var(--gold); }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 16px 0; transition: all 0.7s ease; border-bottom: 1px solid transparent; }
.nav.scrolled { padding: 8px 0; background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201,160,88,0.08); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.nav__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
@media (min-width:640px){ .nav__inner{ padding: 0 32px; } }
@media (min-width:1024px){ .nav__inner{ padding: 0 48px; } }
.nav__logo img { height: 48px; width: 48px; object-fit: contain; transition: transform 0.3s; }
.nav__logo:hover img { transform: scale(1.05); }
@media (min-width:640px){ .nav__logo img{ height: 56px; width: 56px; } }
.nav__links { display: none; gap: 32px; }
.nav__links a { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color 0.3s; position: relative; }
.nav__links a::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:1px; background: var(--gold); transition: width 0.4s ease; }
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: none; align-items: center; gap: 20px; }
.nav__concierge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.nav__concierge:hover { color: rgba(255,255,255,0.7); }
.nav__burger { background: none; border: none; color: rgba(255,255,255,0.8); cursor: pointer; padding: 6px; }
@media (min-width:1024px){ .nav__links, .nav__cta{ display: flex; } .nav__burger{ display: none; } }

/* drawer */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer::before { content:''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; }
.drawer.open::before { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: 320px; max-width: 85vw; background: #0a0a0a; transform: translateX(100%); transition: transform 0.4s ease; padding: 32px 16px; display: flex; flex-direction: column; gap: 4px; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__close { position: absolute; top: 18px; right: 18px; background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; }
.drawer__logo { height: 64px; width: 64px; object-fit: contain; margin: 0 16px 8px; }
.drawer__rule { height: 1px; margin: 8px 16px 12px; background: rgba(201,160,88,0.15); }
.drawer__panel > a { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); padding: 14px 16px; border-left: 2px solid transparent; transition: 0.3s; }
.drawer__panel > a:hover { color: var(--gold); border-left-color: var(--gold); padding-left: 22px; }
.drawer__book { margin: 16px; justify-content: center; }
.drawer__mail { font-size: 12px; color: rgba(255,255,255,0.3) !important; text-transform: none !important; letter-spacing: 0 !important; padding: 0 16px !important; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; height: 100vh; min-height: 640px; width: 100%; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82) contrast(1.05) saturate(1.1); }
.hero__ov { position: absolute; inset: 0; }
.hero__ov--v { background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.8)); }
.hero__ov--h { background: linear-gradient(to right, rgba(0,0,0,0.3), transparent, rgba(0,0,0,0.15)); }
.hero__ov--glow { background: radial-gradient(ellipse at center, transparent 50%, rgba(201,160,88,0.03) 100%); }

.hero__top { position: relative; z-index: 10; width: 100%; max-width: 1280px; margin: 0 auto; padding: 112px 24px 0; }
@media (min-width:640px){ .hero__top{ padding: 128px 32px 0; } }
@media (min-width:1024px){ .hero__top{ padding: 144px 48px 0; } }
.hero__content { max-width: 768px; }
.hero__line { width: 64px; height: 1px; background: var(--gold); margin-bottom: 24px; transform-origin: left; animation: growLine 1s ease 0.1s both; }
@keyframes growLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero__eyebrow { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); font-weight: 500; animation: fadeUp 0.8s ease 0.3s both; display: inline-block; }
@media (min-width:640px){ .hero__eyebrow{ font-size: 11px; } }
.hero__title {
  font-family: var(--serif); font-weight: 300; color: #fff; margin-top: 16px;
  font-size: 2.8rem; line-height: 0.95; letter-spacing: -0.01em; animation: fadeUp 0.8s ease 0.5s both;
}
.hero__title .i { opacity: 0.9; }
@media (min-width:640px){ .hero__title{ font-size: 3.5rem; } }
@media (min-width:768px){ .hero__title{ font-size: 4.5rem; } }
@media (min-width:1024px){ .hero__title{ font-size: 5.5rem; } }
@media (min-width:1280px){ .hero__title{ font-size: 6rem; } }
.hero__sub { font-size: 16px; color: rgba(255,255,255,0.55); margin-top: 24px; max-width: 32rem; line-height: 1.7; animation: fadeUp 0.8s ease 0.7s both; }
@media (min-width:640px){ .hero__sub{ font-size: 18px; } }
.hero__btns { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; animation: fadeUp 0.8s ease 0.9s both; }
@media (min-width:640px){ .hero__btns{ flex-direction: row; } }
.hero__scroll { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 10; color: rgba(255,255,255,0.2); animation: scrollBounce 2s ease infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollBounce { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* booking widget */
.hero__bottom { position: relative; z-index: 10; width: 100%; padding-bottom: 32px; animation: fadeUp 1s ease 1.2s both; }
@media (min-width:640px){ .hero__bottom{ padding-bottom: 40px; } }
@media (min-width:1024px){ .hero__bottom{ padding-bottom: 48px; } }
.booking { max-width: 1024px; margin: 0 auto; padding: 0 16px; }
@media (min-width:640px){ .booking{ padding: 0 24px; } }
.booking__card {
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(24px) saturate(1.2); -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,160,88,0.05) inset;
  padding: 20px;
}
@media (min-width:640px){ .booking__card{ padding: 28px; } }
@media (min-width:1024px){ .booking__card{ padding: 32px; } }
.booking__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.booking__bar { width: 6px; height: 20px; border-radius: 100px; background: var(--gold); }
.booking__label { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 500; }
.booking__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: end; }
@media (min-width:640px){ .booking__grid{ grid-template-columns: repeat(3,1fr); gap: 16px; } }
@media (min-width:1024px){ .booking__grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; } }
.bk-field { display: flex; flex-direction: column; gap: 6px; }
.bk-field--prop { grid-column: span 2; }
@media (min-width:640px){ .bk-field--prop{ grid-column: span 1; } }
.bk-field--btn { grid-column: span 2; }
@media (min-width:640px){ .bk-field--btn{ grid-column: span 1; } }
.bk-field label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 500; }
.bk-field select, .bk-field input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: var(--warm-white); font-family: var(--sans); font-size: 14px; border-radius: 12px; padding: 12px 16px;
  transition: border-color 0.3s;
}
.bk-field select { appearance: none; cursor: pointer; }
.bk-field select option { background: #1a1a1a; }
.bk-field input { color-scheme: dark; }
.bk-field select:focus, .bk-field input:focus { outline: none; border-color: rgba(201,160,88,0.3); }
.bk-counter { display: flex; align-items: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.bk-counter button { padding: 12px; background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer; font-size: 14px; transition: color 0.2s; }
.bk-counter button:hover { color: #fff; }
.bk-counter span { flex: 1; text-align: center; font-size: 14px; min-width: 2rem; }
.booking__search { width: 100%; padding: 13px 20px; border-radius: 12px; font-size: 12px; box-shadow: 0 4px 20px rgba(201,160,88,0.25); }

/* =====================================================================
   SECTIONS (generic)
   ===================================================================== */
.sec { padding: 96px 0; }
@media (min-width:640px){ .sec{ padding: 128px 0; } }
.sec--sm { padding: 80px 0; }
@media (min-width:640px){ .sec--sm{ padding: 112px 0; } }
.sec__head { text-align: center; max-width: 768px; margin: 0 auto 64px; }
.sec__head--left { text-align: left; max-width: 768px; margin: 0 0 48px; }
.sec__title { font-family: var(--serif); font-weight: 300; color: #fff; font-size: 30px; line-height: 1.05; margin-top: 12px; }
@media (min-width:640px){ .sec__title{ font-size: 36px; } }
@media (min-width:1024px){ .sec__title{ font-size: 48px; } }
.sec__title--ink { color: var(--charcoal); }
.sec__title--left { text-align: left; }
.sec__lead { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 20px; line-height: 1.7; }
@media (min-width:640px){ .sec__lead{ font-size: 16px; } }
.sec__lead--ink { color: #777; }
.sec__lead--narrow { max-width: 36rem; }
.sec__head--left .sec__lead { margin-left: 0; margin-right: 0; }
.sec__more { text-align: center; margin-top: 48px; }

/* =====================================================================
   FEATURED VILLAS
   ===================================================================== */
.villas-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width:768px){ .villas-grid{ grid-template-columns: 1fr 1fr; gap: 32px; } }
.villa { background: #141414; border: 1px solid rgba(255,255,255,0.04); border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform 0.5s cubic-bezier(.25,.1,.25,1); }
.villa:hover { transform: translateY(-8px); }
.villa__media { position: relative; height: 288px; overflow: hidden; }
@media (min-width:640px){ .villa__media{ height: 320px; } }
.villa__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.25,.1,.25,1); }
.villa:hover .villa__media img { transform: scale(1.08); }
.villa__media::after { content:''; position: absolute; inset: 0; background: linear-gradient(to top, #141414, rgba(0,0,0,0.2) 40%, transparent); }
.villa__tag { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 6px 12px; border-radius: 100px; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.villa__tag--gold { background: var(--gold); color: #0a0a0a; }
.villa__tag--plain { background: rgba(255,255,255,0.12); color: #fff; backdrop-filter: blur(8px); }
.villa__rating { position: absolute; top: 16px; right: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; background: var(--gold); color: #0a0a0a; }
.villa__fav { position: absolute; bottom: 16px; right: 16px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: rgba(0,0,0,0.3); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); cursor: pointer; transition: 0.3s; }
.villa__fav:hover { color: #f87171; border-color: rgba(248,113,113,0.3); }
.villa__body { padding: 24px; }
@media (min-width:640px){ .villa__body{ padding: 28px; } }
.villa__name { font-family: var(--serif); font-weight: 500; color: #fff; font-size: 24px; line-height: 1.15; }
@media (min-width:640px){ .villa__name{ font-size: 1.65rem; } }
.villa__desc { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 8px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.villa__stats { display: flex; align-items: center; gap: 20px; margin-top: 16px; }
.villa__stats span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.45); font-size: 12px; }
.villa__stats svg { color: var(--gold); }
.villa__amen { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.villa__amen span { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 100px; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(201,160,88,0.08); color: var(--gold); border: 1px solid rgba(201,160,88,0.1); }
.villa__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04); }
.villa__price { font-family: var(--serif); font-size: 24px; color: #fff; font-weight: 300; }
.villa__price small { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.3); margin-left: 4px; }
.villa__link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); transition: gap 0.3s; }
.villa__link:hover { gap: 12px; }

/* =====================================================================
   STUDIOS
   ===================================================================== */
.studios-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width:640px){ .studios-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px){ .studios-grid{ grid-template-columns: repeat(4,1fr); } }
.studio { background: #1a1a1a; border-radius: 12px; overflow: hidden; transition: transform 0.5s cubic-bezier(.25,.1,.25,1); }
.studio:hover { transform: translateY(-8px); }
.studio__media { position: relative; height: 192px; overflow: hidden; }
.studio__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.25,.1,.25,1); }
.studio:hover .studio__media img { transform: scale(1.08); }
.studio__media::after { content:''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%); }
.studio__rating { position: absolute; top: 12px; right: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 3px; padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; background: var(--gold); color: #0a0a0a; }
.studio__loc { position: absolute; bottom: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 100px; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); }
.studio__loc span { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; color: var(--charcoal); }
.studio__loc svg { color: var(--gold); }
.studio__body { padding: 16px; }
.studio__name { font-family: var(--serif); font-size: 18px; color: #fff; font-weight: 500; line-height: 1.15; }
.studio__tag { font-size: 11px; color: var(--gold); margin-top: 4px; }
.studio__stats { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.studio__stats span { display: inline-flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.4); font-size: 11px; }
.studio__stats svg { color: var(--gold); }
.studio__foot { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); }
.studio__link { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.link-plain:hover svg { transform: translateX(3px); transition: transform .3s; }

/* =====================================================================
   AVAILABILITY CALENDAR
   ===================================================================== */
.cal { max-width: 512px; margin: 0 auto; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 24px; }
@media (min-width:640px){ .cal{ padding: 32px; } }
.cal__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cal__nav button { padding: 8px; border-radius: 8px; background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; transition: 0.2s; }
.cal__nav button:hover { background: rgba(255,255,255,0.05); color: var(--gold); }
.cal__title { font-family: var(--serif); font-size: 20px; color: #fff; font-weight: 400; }
.cal__week { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 8px; }
.cal__week span { text-align: center; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 8px 0; }
.cal__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal__day { height: 40px; border-radius: 8px; background: none; border: none; font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.2s; position: relative; }
.cal__day:hover:not(.is-booked):not(.is-selected) { color: #fff; background: rgba(255,255,255,0.05); transform: scale(1.05); }
.cal__day.is-empty { cursor: default; }
.cal__day.is-booked { background: rgba(239,68,68,0.15); color: rgba(255,255,255,0.3); cursor: not-allowed; }
.cal__day.is-selected { background: var(--gold); color: #0a0a0a; font-weight: 600; }
.cal__day .today-dot { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.cal__legend { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); }
.cal__legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.4); }
.lg { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.lg--sel { background: var(--gold); }
.lg--book { background: rgba(239,68,68,0.15); }
.lg--avail { background: rgba(34,197,94,0.15); }
.cal__cta { width: 100%; margin-top: 24px; padding: 14px 24px; border-radius: 8px; font-size: 14px; letter-spacing: 0.15em; }

/* =====================================================================
   WHY CHOOSE (light)
   ===================================================================== */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width:640px){ .why-grid{ grid-template-columns: 1fr 1fr; gap: 32px; } }
.why { background: #fff; border: 1px solid rgba(201,160,88,0.08); border-radius: 16px; padding: 28px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: box-shadow 0.5s, transform 0.5s; }
@media (min-width:640px){ .why{ padding: 32px; } }
.why:hover { box-shadow: 0 20px 40px rgba(120,100,60,0.12); }
.why__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.why__icon { width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center; background: rgba(201,160,88,0.08); color: var(--gold); transition: transform 0.3s; }
.why:hover .why__icon { transform: scale(1.1); }
.why__stat { font-family: var(--serif); font-size: 18px; font-weight: 300; padding: 4px 14px; border-radius: 100px; background: rgba(201,160,88,0.08); color: var(--gold); }
.why__title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--charcoal); margin-bottom: 12px; }
@media (min-width:640px){ .why__title{ font-size: 24px; } }
.why__desc { font-size: 13px; line-height: 1.7; color: #666; }

/* =====================================================================
   EXPERIENCES
   ===================================================================== */
.exp-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width:640px){ .exp-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px){ .exp-grid{ grid-template-columns: repeat(3,1fr); } }
.exp { position: relative; border-radius: 16px; overflow: hidden; background: #141414; border: 1px solid rgba(255,255,255,0.04); cursor: pointer; }
.exp__media { position: relative; height: 256px; overflow: hidden; }
.exp__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.exp:hover .exp__media img { transform: scale(1.1); }
.exp__media::after { content:''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2) 50%, transparent); }
.exp__dist { position: absolute; top: 16px; right: 16px; z-index: 2; padding: 4px 10px; border-radius: 100px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); font-size: 10px; letter-spacing: 0.06em; color: rgba(255,255,255,0.7); }
.exp__cap { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px; }
.exp__loc { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.exp__loc span { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.exp__loc svg { color: var(--gold); }
.exp__name { font-family: var(--serif); font-size: 20px; color: #fff; font-weight: 500; }
.exp__desc { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 6px; line-height: 1.6; }

/* =====================================================================
   CONCIERGE (horizontal scroll)
   ===================================================================== */
.sec--concierge { position: relative; overflow: hidden; }
.concierge-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(201,160,88,0.08); }
.concierge-scroll-wrap { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width:640px){ .concierge-scroll-wrap{ padding: 0 32px; } }
@media (min-width:1024px){ .concierge-scroll-wrap{ padding: 0 48px; } }
.concierge-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 24px; scrollbar-width: none; -ms-overflow-style: none; }
.concierge-scroll::-webkit-scrollbar { display: none; }
.cc { flex: 0 0 320px; width: 320px; cursor: pointer; }
.cc__inner { position: relative; height: 200px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: border-radius 0.5s; }
.cc:hover .cc__inner { border-radius: 12px; }
.cc__inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.cc:hover .cc__inner img { transform: scale(1.1); }
.cc__ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3) 50%, transparent); }
.cc__glow { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s; background: linear-gradient(to top, rgba(201,160,88,0.15) 0%, transparent 60%); box-shadow: inset 0 0 0 1px rgba(201,160,88,0.3), 0 0 30px rgba(201,160,88,0.1); }
.cc:hover .cc__glow { opacity: 1; }
.cc__body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px; }
.cc__sub { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; color: var(--gold); margin-bottom: 6px; display: block; }
.cc__title { font-family: var(--serif); font-size: 20px; color: #fff; font-weight: 500; line-height: 1.1; }
.cc__explore { margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; opacity: 0; transform: translateY(8px); transition: all 0.3s; }
.cc:hover .cc__explore { opacity: 1; transform: translateY(0); }
.cc__explore span { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.cc__explore svg { color: var(--gold); }
.concierge-fade { position: absolute; top: 0; bottom: 24px; width: 48px; pointer-events: none; z-index: 3; }
.concierge-fade--l { left: 0; background: linear-gradient(to right, #0a0a0a, transparent); }
.concierge-fade--r { right: 0; background: linear-gradient(to left, #0a0a0a, transparent); }

/* concierge modal */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 16px; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); }
@media (min-width:640px){ .modal{ padding: 32px; } }
.modal.open { display: flex; }
.modal__card { position: relative; width: 100%; max-width: 896px; max-height: 90vh; overflow-y: auto; border-radius: 24px; background: #111; border: 1px solid rgba(201,160,88,0.12); box-shadow: 0 0 60px rgba(201,160,88,0.08), 0 0 0 1px rgba(255,255,255,0.04); animation: scaleIn 0.4s ease; }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.92) translateY(30px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal__img { position: relative; height: 256px; overflow: hidden; border-radius: 24px 24px 0 0; }
@media (min-width:640px){ .modal__img{ height: 320px; } }
@media (min-width:1024px){ .modal__img{ height: 384px; } }
.modal__img img { width: 100%; height: 100%; object-fit: cover; }
.modal__img::after { content:''; position: absolute; inset: 0; background: linear-gradient(to top, #111, rgba(0,0,0,0.4) 50%, transparent), linear-gradient(135deg, rgba(201,160,88,0.08), transparent 50%); }
.modal__close { position: absolute; top: 20px; right: 20px; z-index: 10; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); cursor: pointer; transition: 0.3s; }
.modal__close:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.modal__body { padding: 24px; margin-top: -80px; position: relative; z-index: 2; }
@media (min-width:640px){ .modal__body{ padding: 32px; } }
@media (min-width:1024px){ .modal__body{ padding: 40px; } }
.modal__sub { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; color: var(--gold); }
.modal__title { font-family: var(--serif); font-size: 30px; color: #fff; font-weight: 300; margin-top: 8px; }
@media (min-width:640px){ .modal__title{ font-size: 36px; } }
.modal__desc { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 16px; line-height: 1.7; max-width: 42rem; }
.modal__details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
@media (min-width:640px){ .modal__details{ grid-template-columns: repeat(4,1fr); } }
.modal__details div { border-radius: 12px; padding: 16px; text-align: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.modal__details span { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.modal__cta { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
@media (min-width:640px){ .modal__cta{ flex-direction: row; } }
.modal__closebtn { padding: 14px 32px; border: 1px solid rgba(255,255,255,0.1); background: none; font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); border-radius: 12px; cursor: pointer; transition: 0.3s; }
.modal__closebtn:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testi { max-width: 672px; margin: 0 auto; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 32px; text-align: center; }
@media (min-width:640px){ .testi{ padding: 48px; } }
.testi__quote { display: flex; justify-content: center; margin-bottom: 24px; color: rgba(201,160,88,0.3); }
.testi__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; color: var(--gold); }
.testi__stars svg { width: 20px; height: 20px; fill: var(--gold); }
.testi__text { font-family: var(--serif); font-size: 20px; color: rgba(255,255,255,0.9); font-style: italic; line-height: 1.5; }
@media (min-width:640px){ .testi__text{ font-size: 24px; } }
.testi__author { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-top: 24px; }
.testi__ctrls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.testi__ctrls button { padding: 8px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); background: none; color: rgba(255,255,255,0.4); cursor: pointer; transition: 0.3s; }
.testi__ctrls button:hover { color: var(--gold); border-color: rgba(201,160,88,0.3); }
.testi__dots { display: flex; gap: 8px; }
.testi__dots button { width: 8px; height: 8px; border-radius: 100px; border: none; background: rgba(255,255,255,0.2); cursor: pointer; padding: 0; transition: all 0.3s; }
.testi__dots button.active { width: 24px; background: var(--gold); }

/* =====================================================================
   ABOUT (light)
   ===================================================================== */
.about { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width:1024px){ .about{ grid-template-columns: 1fr 1fr; gap: 64px; } }
.about__rule { width: 64px; height: 2px; background: var(--gold); margin: 24px 0; }
.about__p { font-size: 14px; line-height: 1.7; color: #555; margin-bottom: 16px; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
@media (min-width:640px){ .about__stats{ grid-template-columns: repeat(4,1fr); } }
.about__stats strong { display: block; font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--gold); }
@media (min-width:640px){ .about__stats strong{ font-size: 36px; } }
.about__stats span { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #888; margin-top: 4px; display: block; }
.about__media { position: relative; }
.about__img { position: relative; height: 500px; border-radius: 16px; overflow: hidden; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__accent { position: absolute; bottom: -16px; right: -16px; width: 128px; height: 128px; border-radius: 16px; background: rgba(201,160,88,0.15); z-index: -1; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 0 24px; transition: background 0.3s; }
.faq__item:hover { background: rgba(201,160,88,0.05); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; font-family: var(--sans); font-size: 14px; color: #fff; transition: color 0.3s; }
@media (min-width:640px){ .faq__q{ font-size: 16px; } }
.faq__q:hover { color: var(--gold); }
.faq__chev { flex-shrink: 0; transition: transform 0.3s; color: rgba(255,255,255,0.5); }
.faq__item.open .faq__chev { transform: rotate(180deg); color: var(--gold); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__a p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; padding-bottom: 20px; }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta { position: relative; padding: 96px 0; overflow: hidden; }
@media (min-width:640px){ .cta{ padding: 128px 0; } }
.cta__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #c9a058 0%, #b08d45 40%, #c9a058 70%, #d4b06a 100%); }
.cta__rings { position: absolute; inset: 0; overflow: hidden; }
.cta__circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta__circle--tl { top: -80px; left: -80px; width: 320px; height: 320px; }
.cta__circle--br { bottom: -128px; right: -128px; width: 500px; height: 500px; }
.cta__ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,0.06); border-radius: 50%; }
.cta__ring--lg { width: 800px; height: 800px; }
.cta__ring--md { width: 500px; height: 500px; }
.cta__content { position: relative; z-index: 10; max-width: 896px; margin: 0 auto; padding: 0 24px; text-align: center; }
.cta__title { font-family: var(--serif); font-weight: 300; color: #0a0a0a; font-size: 30px; line-height: 1.1; margin-top: 12px; }
@media (min-width:640px){ .cta__title{ font-size: 36px; } }
@media (min-width:1024px){ .cta__title{ font-size: 3.5rem; } }
.cta__lead { font-size: 16px; color: rgba(10,10,10,0.6); margin-top: 20px; line-height: 1.7; }
@media (min-width:640px){ .cta__lead{ font-size: 18px; } }
.cta__btns { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
@media (min-width:640px){ .cta__btns{ flex-direction: row; } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: #0a0a0a; padding-top: 0; padding-bottom: 32px; }
.footer__line { width: 100%; height: 1px; background: rgba(201,160,88,0.15); }
.footer__inner { padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width:640px){ .footer__grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px){ .footer__grid{ grid-template-columns: repeat(4,1fr); gap: 32px; } }
.footer__brand { }
@media (min-width:640px){ .footer__brand{ grid-column: span 2; } }
@media (min-width:1024px){ .footer__brand{ grid-column: span 1; } }
.footer__logo { display: flex; flex-direction: column; align-items: flex-start; }
.footer__name { font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: 0.15em; color: var(--gold); }
.footer__sub { font-size: 7px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: -2px; }
.footer__desc { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 20px; line-height: 1.7; }
.footer__socials { display: flex; gap: 10px; margin-top: 24px; }
.footer__socials a { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); transition: 0.3s; }
.footer__socials a:hover { color: var(--gold); border-color: rgba(201,160,88,0.3); }
.footer__socials--sm { margin-top: 12px; }
.footer__socials--sm a { width: auto; height: auto; background: none; border: none; color: rgba(255,255,255,0.2); }
.footer__socials--sm a:hover { color: var(--gold); }
.footer__col h4 { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; color: var(--gold); }
.footer__col ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer__col a:hover { color: rgba(255,255,255,0.6); }
.footer__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.footer__contact span { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__contact svg { color: rgba(201,160,88,0.5); }
.footer__social-h { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-top: 32px; }
.footer__news { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer__news h4 { font-size: 14px; font-weight: 500; color: #fff; }
.footer__news p { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 4px; }
.footer__form { display: flex; margin-top: 16px; max-width: 512px; }
.footer__form input { flex: 1; min-width: 0; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); color: #fff; font-family: var(--sans); font-size: 14px; padding: 12px 16px; border-radius: 8px 0 0 8px; }
.footer__form input::placeholder { color: rgba(255,255,255,0.15); }
.footer__form input:focus { outline: none; border-color: rgba(201,160,88,0.3); }
.footer__form button { padding: 12px 20px; border: none; background: var(--gold); color: #0a0a0a; border-radius: 0 8px 8px 0; cursor: pointer; transition: background 0.3s; }
.footer__form button:hover { background: var(--gold-light); }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.03); display: flex; flex-direction: column; align-items: center; gap: 16px; }
@media (min-width:640px){ .footer__bottom{ flex-direction: row; justify-content: space-between; } }
.footer__bottom p { font-size: 11px; color: rgba(255,255,255,0.15); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 11px; color: rgba(255,255,255,0.15); transition: color 0.3s; }
.footer__legal a:hover { color: rgba(255,255,255,0.3); }

/* =====================================================================
   SCROLL REVEAL (enhancement only)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(.25,.1,.25,1), transform 0.8s cubic-bezier(.25,.1,.25,1); }
.reveal.revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, .hero__line, .hero__eyebrow, .hero__title, .hero__sub, .hero__btns, .hero__bottom { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
