/* ---------------------------------------------------------
   01) THEME TOKENS
   --------------------------------------------------------- */
:root{
  --bg:#0e1217;
  --ink:#f7f7f7;
  --muted:#aab3bf;
  --brand:#14b8a6;
  --brand2:#38bdf8;
  --accent2:var(--brand2); /* used by page CSS (LPV) */
  --card:#151b22;
  --card2:#11161c;
  --line:#1b2430;
  --radius:18px;
}

/* ---------------------------------------------------------
   02) RESET + BASICS
   --------------------------------------------------------- */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:system-ui,-apple-system,Segoe UI,Inter,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.muted{color:var(--muted)}
.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0
}

/* ---------------------------------------------------------
   03) CONTAINERS
   --------------------------------------------------------- */
.container{
  max-width:1160px;
  margin:0 auto;
  padding:0 20px;
}

.bar{
  max-width:1160px;
  margin:0 auto;
  padding:14px 20px;
}

/* ---------------------------------------------------------
   04) HEADER / NAV
   --------------------------------------------------------- */
header.site{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(14,18,23,.72);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}

/* Header gets its own tighter padding */
header.site .bar{
  padding:16px 10px;
}
@media (max-width:760px){
  header.site .bar{
    padding:14px 12px;
  }
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:nowrap;
}

/* Make header the positioning context for the dropdown */
header.site .bar.nav-wrap{ position:relative; }

.brand-link{
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
}

.brand-logo{
  height:48px;
  width:auto;
  object-fit:contain;
}

.brand-title{
  font-size:1rem;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:46vw;
  font-weight:700;
  margin:0;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:1.1rem;
  flex-wrap:nowrap;
}

.nav-links a{opacity:.9}
.nav-links a:hover{opacity:1}

/* ---------------------------------------------------------
   05) BUTTONS
   --------------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.9rem 1.15rem;
  border-radius:999px;
  border:1px solid #2a3340;
  font-weight:600;
  cursor:pointer;
  transition:transform .15s ease,filter .15s ease,box-shadow .2s ease;
}
.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#071317;
  border-color:transparent;
}
.btn-primary:hover{
  filter:brightness(1.08);
  transform:translateY(-1px);
}
.btn-ghost{background:transparent}

.btn-compact{
  font-size:.95rem;
  padding:.6rem 1rem;
  border-radius:999px;
  white-space:nowrap;
}

/* ---------------------------------------------------------
   06) MOBILE NAV
   --------------------------------------------------------- */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  cursor:pointer;
  padding:10px;
}
.nav-toggle span{
  display:block;
  height:2px;
  background:var(--ink);
  margin:6px 0;
  border-radius:2px;
}

@media (max-width:760px){
  .nav-toggle{ display:inline-block; }

  .nav-links{
    position:absolute;
    top:64px;
    left:12px;
    right:12px;

    display:none;
    flex-direction:column;
    gap:0;

    padding:10px;
    border-radius:14px;
    border:1px solid var(--line);
    background:rgba(15,19,26,.92);
    backdrop-filter:blur(10px);
    box-shadow:0 18px 45px rgba(0,0,0,.55);
    z-index:50;
  }

  .nav-links a{
    width:100%;
    padding:12px 12px;
    border-radius:10px;
    font-size:1rem;
    opacity:1;
  }

  .nav-links a:hover{
    background:rgba(255,255,255,.05);
    color:var(--ink);
  }

  .nav-links.is-open{ display:flex; }

  .nav-links .btn{
    width:100%;
    justify-content:center;
    margin-top:6px;
  }
}

/* ---------------------------------------------------------
   07) REQUEST FORM (shared – used by request.html)
   --------------------------------------------------------- */

.wa-form{
  display:grid;
  gap:12px;
}

.wa-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.wa-field label{
  display:block;
  font-size:.9rem;
  color:rgba(220,228,238,.9);
  margin:0 0 6px;
}

.wa-field input,
.wa-field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid #2a3340;
  background:rgba(0,0,0,.18);
  color:var(--ink);
  outline:none;
}

.wa-field textarea{
  min-height:92px;
  resize:vertical;
}

/* Villa radio group */
.wa-radio{
  display:grid;
  gap:10px;
  padding:12px;
  border:1px solid #2a3340;
  border-radius:12px;
  background:rgba(0,0,0,.18);
}
.wa-radio label{
  display:flex;
  gap:10px;
  align-items:center;
  color:var(--ink);
  font-size:1rem;
}
.wa-radio input[type="radio"]{
  width:18px;
  height:18px;
}

.wa-actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-start;
  margin-top:6px;
}

.wa-help{
  font-size:.88rem;
  color:var(--muted);
}

/* Number inputs: reduce spinner noise */
.wa-field input[type="number"]{
  -moz-appearance:textfield;
}
.wa-field input[type="number"]::-webkit-outer-spin-button,
.wa-field input[type="number"]::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}

@media (max-width:560px){
  .wa-grid{grid-template-columns:1fr}
}

.video-section {
  padding: 20px 20px;
}

.video-section {
  margin-bottom: 20px;
}


.video-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.video-card h2 {
  margin: 0 0 10px;
}

.video-card p {
  margin: 0 0 18px;
  opacity: 0.9;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #000;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 768px) {
  .map-embed iframe {
    height: 300px;
  }
}
.subtle-note {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.cta-availability {
  margin-top: 18px;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #000;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(56,189,248,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-availability:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(56,189,248,0.45);
}

.cta-availability {
  margin-top: 18px;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #000;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(56,189,248,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-availability:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(56,189,248,0.45);
}

.cta-sub {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #9ca3af;
  letter-spacing: 0.4px;
}


