:root {
  --bg: #0B0B0D;
  --bg-mid: #111115;
  --bg-card: #16161A;
  --text-primary: #F2EFE9;
  --text-muted: #8A8A92;
  --accent-gold: #C9A96E;
  --accent-hover: #E2C28A;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(201,169,110,0.25);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{background:var(--bg);color:var(--text-primary);font-family:'Inter',sans-serif;overflow-x:hidden;-webkit-font-smoothing:antialiased}

/* ── NAVBAR ── */
.navbar{position:fixed;top:0;left:0;width:100%;z-index:100;display:flex;justify-content:space-between;align-items:center;padding:1.6rem 4rem;transition:background .4s,backdrop-filter .4s,padding .4s,border-color .4s;border-bottom:1px solid transparent}
.navbar.scrolled{background:rgba(11,11,13,.85);backdrop-filter:blur(16px);padding:1rem 4rem;border-color:var(--border)}
.nav-logo{font-family:'Outfit',sans-serif;font-size:1.3rem;letter-spacing:.08em}
.nav-logo-num{color:var(--accent-gold);font-weight:600}
.nav-logo-text{font-weight:300;color:var(--text-primary)}
.nav-cta{font-family:'Outfit',sans-serif;font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--text-primary);text-decoration:none;border:1px solid rgba(255,255,255,.25);padding:.55rem 1.4rem;border-radius:50px;transition:all .3s}
.nav-cta:hover{border-color:var(--accent-gold);color:var(--accent-gold)}

/* ── HERO ── */
.hero{position:relative;height:100vh;min-height:700px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center 40%;will-change:transform;transition:transform .1s linear}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(11,11,13,.35) 0%,rgba(11,11,13,.6) 60%,rgba(11,11,13,1) 100%)}
.hero-content{position:relative;z-index:2;max-width:780px;padding:0 2rem;animation:fadeUp 1.4s ease both}
.hero-eyebrow{font-family:'Outfit',sans-serif;font-size:.78rem;letter-spacing:.22em;text-transform:uppercase;color:var(--accent-gold);margin-bottom:1.8rem;opacity:.9}
.hero-title{font-family:'Cormorant Garamond',serif;font-size:clamp(4rem,10vw,8rem);font-weight:300;line-height:1;margin-bottom:1.8rem;color:var(--text-primary)}
.hero-title em{font-style:italic;color:var(--accent-gold)}
.hero-sub{font-size:.95rem;line-height:1.8;color:rgba(242,239,233,.7);max-width:520px;margin:0 auto 2.8rem;font-weight:300}
.hero-cta{display:inline-flex;align-items:center;gap:.7rem;background:transparent;border:1px solid var(--accent-gold);color:var(--accent-gold);text-decoration:none;font-family:'Outfit',sans-serif;font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;padding:.9rem 2.2rem;border-radius:50px;transition:all .35s}
.hero-cta:hover{background:var(--accent-gold);color:var(--bg)}
.hero-scroll-hint{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);z-index:2;display:flex;flex-direction:column;align-items:center;gap:.8rem;animation:fadeIn 2s 1s both}
.hero-scroll-hint span{font-family:'Outfit',sans-serif;font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(242,239,233,.4)}
.scroll-line{width:1px;height:60px;background:linear-gradient(to bottom,rgba(201,169,110,.6),transparent);animation:scrollPulse 2s infinite}

/* ── STATS STRIP ── */
.stats-strip{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:0;background:var(--bg-mid);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:2.4rem 4rem}
.stat-item{display:flex;flex-direction:column;align-items:center;gap:.3rem;padding:0 3rem;text-align:center}
.stat-num{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:400;color:var(--text-primary);line-height:1}
.stat-label{font-family:'Outfit',sans-serif;font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;color:var(--text-muted)}
.stat-divider{width:1px;height:40px;background:var(--border)}

/* ── SECTION COMMONS ── */
.section-eyebrow{font-family:'Outfit',sans-serif;font-size:.72rem;letter-spacing:.25em;text-transform:uppercase;color:var(--accent-gold);margin-bottom:1.2rem}
.section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2.8rem,5vw,4.5rem);font-weight:300;line-height:1.1;margin-bottom:2rem;color:var(--text-primary)}
.section-title em{font-style:italic;color:var(--accent-gold)}
.section-body{font-size:.95rem;line-height:1.9;color:var(--text-muted);font-weight:300;margin-bottom:1.4rem;max-width:560px}

/* ── RESIDENCE ── */
.residence-section{display:grid;grid-template-columns:1fr 1fr;min-height:700px;overflow:hidden}
.residence-image-wrap{position:relative;overflow:hidden}
.residence-img{width:100%;height:100%;object-fit:cover;transition:transform 8s ease;display:block}
.residence-image-wrap:hover .residence-img{transform:scale(1.04)}
.residence-copy{display:flex;flex-direction:column;justify-content:center;padding:6rem 5rem}
.residence-features{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:2.5rem}
.feature-pill{font-family:'Outfit',sans-serif;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;border:1px solid var(--border-gold);color:var(--accent-gold);padding:.45rem 1.1rem;border-radius:50px}

/* ── VIEW ── */
.view-section{position:relative;height:70vh;min-height:500px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.view-bg{position:absolute;inset:0;background-size:cover;background-position:center;background-attachment:fixed}
.view-overlay{position:absolute;inset:0;background:rgba(11,11,13,.55)}
.view-content{position:relative;z-index:2;max-width:700px;padding:0 2rem}
.view-quote-mark{font-family:'Cormorant Garamond',serif;font-size:8rem;line-height:.6;color:var(--accent-gold);opacity:.4;margin-bottom:.5rem}
.view-quote{font-family:'Cormorant Garamond',serif;font-size:clamp(1.6rem,3vw,2.4rem);font-weight:300;font-style:italic;line-height:1.5;color:var(--text-primary);margin-bottom:1.5rem}
.view-attribution{font-family:'Outfit',sans-serif;font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--accent-gold);opacity:.7}

/* ── GALLERY ── */
.gallery-section{padding:8rem 4rem;background:var(--bg)}
.gallery-header{text-align:center;margin-bottom:4rem}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:320px 320px;gap:1rem}
.gallery-item{position:relative;overflow:hidden;border-radius:4px;cursor:pointer}
.gallery-item--large{grid-row:span 2}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .7s ease}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-caption{position:absolute;bottom:0;left:0;right:0;padding:1.2rem 1.5rem;background:linear-gradient(to top,rgba(11,11,13,.85),transparent);font-family:'Outfit',sans-serif;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:rgba(242,239,233,.8);transform:translateY(8px);opacity:0;transition:all .4s}
.gallery-item:hover .gallery-caption{transform:translateY(0);opacity:1}
.gallery-placeholder{background:var(--bg-card);border:1px solid var(--border);display:flex;align-items:center;justify-content:center}
.placeholder-inner{display:flex;flex-direction:column;align-items:center;gap:1rem;color:var(--text-muted);text-align:center;padding:2rem}
.placeholder-inner svg{opacity:.3}
.placeholder-inner p{font-family:'Outfit',sans-serif;font-size:.8rem;letter-spacing:.08em;color:var(--text-muted);line-height:1.6}
.placeholder-inner span{font-size:.7rem;opacity:.5}

/* ── AMENITIES ── */
.amenities-section{padding:8rem 6rem;background:var(--bg-mid)}
.amenities-header{text-align:center;margin-bottom:4rem}
.amenities-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(340px,1fr));gap:2.5rem;max-width:1100px;margin:0 auto}
.amenity-item{display:flex;gap:1.5rem;align-items:flex-start;padding:2rem;background:var(--bg-card);border:1px solid var(--border);border-radius:8px;transition:border-color .3s,transform .3s}
.amenity-item:hover{border-color:var(--border-gold);transform:translateY(-4px)}
.amenity-icon{flex-shrink:0;width:44px;height:44px;color:var(--accent-gold)}
.amenity-icon svg{width:100%;height:100%}
.amenity-text h4{font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-weight:400;color:var(--text-primary);margin-bottom:.4rem}
.amenity-text p{font-size:.85rem;line-height:1.7;color:var(--text-muted);font-weight:300}

/* ── LOCATION ── */
.location-section{display:grid;grid-template-columns:1fr 1fr;min-height:600px}
.location-copy{display:flex;flex-direction:column;justify-content:center;padding:6rem 5rem;background:var(--bg)}
.location-points{margin-top:2.5rem;display:flex;flex-direction:column;gap:.1rem}
.location-point{display:flex;align-items:center;gap:1.5rem;padding:1.1rem 0;border-bottom:1px solid var(--border)}
.location-point:last-child{border-bottom:none}
.loc-dist{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:400;color:var(--accent-gold);min-width:90px}
.loc-name{font-size:.85rem;color:var(--text-muted);letter-spacing:.03em}
.location-map-wrap{overflow:hidden;background:var(--bg-card)}
.location-map{width:100%;height:100%;border:none;filter:grayscale(1) invert(1) contrast(.85) brightness(.7);min-height:400px}

/* ── TERMS ── */
.terms-section{padding:8rem 4rem;background:var(--bg-mid)}
.terms-inner{max-width:800px;margin:0 auto;text-align:center}
.terms-intro{margin:0 auto 3.5rem;text-align:center}
.terms-table{text-align:left}
.terms-row{display:grid;grid-template-columns:1fr 1.5fr;padding:1.2rem 0;border-bottom:1px solid var(--border);gap:2rem;align-items:center}
.terms-row:last-child{border-bottom:none}
.terms-key{font-family:'Outfit',sans-serif;font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;color:var(--text-muted)}
.terms-val{font-family:'Cormorant Garamond',serif;font-size:1.15rem;color:var(--text-primary);font-weight:300}

/* ── PROSPECTUS FORM ── */
.prospectus-section{position:relative;padding:10rem 2rem;text-align:center;overflow:hidden}
.prospectus-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:blur(8px) brightness(.3);transform:scale(1.1)}
.prospectus-overlay{position:absolute;inset:0;background:rgba(11,11,13,.8)}
.prospectus-inner{position:relative;z-index:2;max-width:640px;margin:0 auto}
.pform{display:flex;flex-direction:column;gap:1.4rem;text-align:left;margin-top:1rem}
.pform-row{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}
.pform-group{display:flex;flex-direction:column;gap:.5rem}
.pform-group--full{grid-column:1/-1}
.pform label{font-family:'Outfit',sans-serif;font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--text-muted)}
.optional{font-size:.65rem;opacity:.6;text-transform:none;letter-spacing:0}
.pform input{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.12);border-radius:6px;padding:1rem 1.2rem;color:var(--text-primary);font-size:.92rem;font-family:'Inter',sans-serif;outline:none;transition:border-color .3s;width:100%}
.pform input::placeholder{color:rgba(255,255,255,.2)}
.pform input:focus{border-color:var(--accent-gold)}
.pform-submit{display:flex;align-items:center;justify-content:center;gap:1rem;background:var(--accent-gold);color:var(--bg);border:none;border-radius:6px;padding:1.1rem 2rem;font-family:'Outfit',sans-serif;font-size:.85rem;letter-spacing:.1em;text-transform:uppercase;cursor:pointer;transition:background .3s,transform .2s;margin-top:.5rem}
.pform-submit:hover{background:var(--accent-hover);transform:translateY(-2px)}
.btn-arrow{font-size:1.1rem}
.pform-back{background:none;border:none;color:var(--text-muted);font-size:.8rem;cursor:pointer;margin-top:.5rem;text-decoration:underline;font-family:'Inter',sans-serif}
.pform-back:hover{color:var(--text-primary)}
.form-error{color:#e07070;font-size:.82rem;font-family:'Inter',sans-serif;padding:.5rem 0}
.otp-instruction{font-size:.9rem;color:var(--text-muted);line-height:1.7;text-align:center;margin-bottom:2rem}
.otp-instruction strong{color:var(--text-primary)}
.otp-inputs{display:flex;gap:.6rem;justify-content:center;align-items:center;margin-bottom:1rem}
.otp-digit{width:52px;height:64px;text-align:center;font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:400;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.15);border-radius:8px;color:var(--text-primary);outline:none;transition:border-color .3s}
.otp-digit:focus{border-color:var(--accent-gold)}
.otp-separator{color:var(--text-muted);font-size:1.2rem;margin:0 .2rem}
.pform-success{text-align:center;padding:3rem 0}
.success-icon{width:64px;height:64px;border-radius:50%;border:1px solid var(--accent-gold);color:var(--accent-gold);font-size:1.8rem;display:flex;align-items:center;justify-content:center;margin:0 auto 2rem}
.pform-success h3{font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:300;color:var(--text-primary);margin-bottom:1rem}
.pform-success p{font-size:.9rem;color:var(--text-muted);line-height:1.8;max-width:440px;margin:0 auto}

/* ── FOOTER ── */
.footer{background:var(--bg);border-top:1px solid var(--border);padding:4rem 2rem;text-align:center}
.footer-inner{max-width:600px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:1rem}
.footer-logo{font-family:'Outfit',sans-serif;font-size:1.4rem;font-weight:300;letter-spacing:.1em;color:var(--text-primary)}
.footer-address{font-size:.8rem;color:var(--text-muted);letter-spacing:.04em}
.footer-legal{font-size:.72rem;color:rgba(138,138,146,.5);line-height:1.7;max-width:500px;text-align:center}
.footer-copy{font-size:.72rem;color:rgba(138,138,146,.4)}

/* ── REVEAL ANIMATION ── */
.reveal{opacity:1;transform:translateY(0);transition:opacity .9s ease,transform .9s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ── UTILITIES ── */
.hidden{display:none!important}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes scrollPulse{0%,100%{opacity:.6;transform:scaleY(1)}50%{opacity:1;transform:scaleY(1.1)}}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .navbar{padding:1.4rem 2rem}
  .navbar.scrolled{padding:.9rem 2rem}
  .residence-section,.location-section{grid-template-columns:1fr}
  .residence-image-wrap{height:55vw}
  .residence-copy,.location-copy{padding:4rem 2rem}
  .stats-strip{padding:2rem 2rem;gap:.5rem}
  .stat-item{padding:0 1.2rem}
  .gallery-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .gallery-item--large{grid-row:span 1}
  .gallery-section{padding:5rem 1.5rem}
  .amenities-section{padding:5rem 2rem}
  .terms-section{padding:5rem 2rem}
  .pform-row{grid-template-columns:1fr}
  .location-map-wrap{height:350px}
  .aerial-caption{padding:2rem}
  .availability-section{padding:5rem 1.5rem}
  .avail-legend{flex-direction:column;max-width:400px;border-radius:12px}
  .avail-legend-divider{width:80%;height:1px;align-self:auto;background:linear-gradient(90deg,transparent,rgba(201,169,110,.2),transparent)}
  .avail-legend-item{width:100%;justify-content:flex-start;padding:1.2rem 1.8rem}
  .calendar-iframe{height:520px}
  .location-aerial-img{min-height:280px}
}
@media(max-width:600px){
  .gallery-grid{grid-template-columns:1fr}
  .stats-strip{flex-direction:column;gap:1.5rem}
  .stat-divider{width:60px;height:1px}
  .hero-title{font-size:3.5rem}
  .otp-digit{width:42px;height:56px;font-size:1.6rem}
  .avail-legend{max-width:100%}
  .calendar-iframe{height:420px}
  .aerial-caption{padding:1.5rem}
  .aerial-title{font-size:1.8rem}
  .avail-legend-item{padding:1rem 1.2rem}
}

/* ── AERIAL SECTION ── */
.aerial-section{position:relative;overflow:hidden}
.aerial-image-wrap{position:relative;overflow:hidden;height:75vh;min-height:520px}
.aerial-img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;transition:transform 10s ease}
.aerial-image-wrap:hover .aerial-img{transform:scale(1.03)}
.aerial-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(11,11,13,.1) 0%,rgba(11,11,13,.65) 100%);pointer-events:none}
.aerial-caption{position:absolute;bottom:0;left:0;right:0;z-index:2;padding:4rem 5rem 4rem}
.aerial-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3.2rem);font-weight:300;line-height:1.15;color:var(--text-primary);margin-bottom:1rem}
.aerial-title em{font-style:italic;color:var(--accent-gold)}
.aerial-sub{font-size:.88rem;line-height:1.8;color:rgba(242,239,233,.65);max-width:560px;font-weight:300}

/* ── LOCATION AERIAL ── */
.location-aerial-wrap{position:relative;overflow:hidden;background:var(--bg-card)}
.location-aerial-img{width:100%;height:100%;object-fit:cover;display:block;min-height:400px}
.location-aerial-pin{position:absolute;bottom:2rem;left:2rem;display:flex;align-items:center;gap:.6rem;background:rgba(11,11,13,.75);backdrop-filter:blur(8px);border:1px solid var(--border-gold);padding:.5rem 1rem;border-radius:50px}
.pin-dot{width:8px;height:8px;border-radius:50%;background:var(--accent-gold);flex-shrink:0;animation:pinPulse 2s infinite}
.pin-label{font-family:'Outfit',sans-serif;font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--text-primary)}
@keyframes pinPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(1.3)}}

/* ── AVAILABILITY SECTION ── */
.availability-section{position:relative;padding:9rem 4rem 7rem;overflow:hidden;background:var(--bg)}
.avail-bg{position:absolute;inset:0;background-size:cover;background-position:center 30%;filter:brightness(.15) saturate(.3)}
.avail-overlay{position:absolute;inset:0;background:linear-gradient(160deg,rgba(11,11,13,.6) 0%,rgba(11,11,13,.85) 60%,rgba(11,11,13,.95) 100%)}
.avail-inner{position:relative;z-index:2;max-width:1080px;margin:0 auto;display:flex;flex-direction:column;gap:3.5rem}

/* header */
.avail-header{text-align:center}
.avail-desc{font-size:.9rem;line-height:1.9;color:var(--text-muted);max-width:560px;margin:.8rem auto 0;font-weight:300}

/* ── PREMIUM BOOKING KEY ── */
.avail-legend{
  display:flex;align-items:stretch;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(201,169,110,.18);
  border-radius:16px;
  overflow:hidden;
  max-width:820px;
  margin:0 auto;
  box-shadow:0 8px 40px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter:blur(12px);
}
.avail-legend-item{
  display:flex;align-items:center;gap:1rem;
  padding:1.6rem 2.4rem;
  flex:1;justify-content:center;
  transition:background 0.3s;
}
.avail-legend-item:hover{background:rgba(255,255,255,.03)}
.avail-legend-divider{width:1px;background:linear-gradient(to bottom,transparent,rgba(201,169,110,.2),transparent);flex-shrink:0;align-self:stretch}
.avail-legend-swatch{
  width:38px;height:38px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.avail-legend-swatch svg{width:17px;height:17px}
.avail-legend-swatch--available{
  background:linear-gradient(135deg,rgba(106,192,136,.12),rgba(106,192,136,.05));
  border:1px solid rgba(106,192,136,.3);
  color:#6ac088;
  box-shadow:0 0 16px rgba(106,192,136,.08);
}
.avail-legend-swatch--reserved{
  background:linear-gradient(135deg,rgba(200,90,90,.12),rgba(200,90,90,.05));
  border:1px solid rgba(200,90,90,.3);
  color:#c85a5a;
  box-shadow:0 0 16px rgba(200,90,90,.08);
}
.avail-legend-swatch--minimum{
  background:linear-gradient(135deg,rgba(201,169,110,.14),rgba(201,169,110,.05));
  border:1px solid rgba(201,169,110,.3);
  color:var(--accent-gold);
  box-shadow:0 0 16px rgba(201,169,110,.08);
}
.avail-legend-text{display:flex;flex-direction:column;gap:.18rem}
.avail-legend-text strong{
  font-family:'Outfit',sans-serif;
  font-size:.8rem;letter-spacing:.06em;
  font-weight:500;color:var(--text-primary);
}
.avail-legend-text span{font-size:.69rem;color:var(--text-muted);font-weight:300;letter-spacing:.02em}

/* ── PREMIUM CALENDAR FRAME ── */
.avail-calendar-frame{
  background:rgba(255,255,255,.022);
  border:1px solid rgba(201,169,110,.2);
  border-radius:16px;
  overflow:hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 1px 0 rgba(201,169,110,.15) inset;
  backdrop-filter:blur(8px);
}

/* title bar */
.avail-calendar-header{
  display:flex;align-items:center;gap:1rem;
  padding:.85rem 1.4rem;
  background:rgba(255,255,255,.035);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.avail-cal-dots{display:flex;align-items:center;gap:.4rem}
.avail-cal-dot{width:11px;height:11px;border-radius:50%;display:inline-block;flex-shrink:0}
.avail-cal-dot--red{background:#ff5f57;box-shadow:0 0 6px rgba(255,95,87,.4)}
.avail-cal-dot--amber{background:#febc2e;box-shadow:0 0 6px rgba(254,188,46,.4)}
.avail-cal-dot--green{background:#28c840;box-shadow:0 0 6px rgba(40,200,64,.4)}
.avail-cal-title{
  display:flex;align-items:center;gap:.5rem;
  font-family:'Outfit',sans-serif;
  font-size:.72rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--text-muted);
  margin:0 auto;
}
.avail-cal-icon{width:13px;height:13px;color:var(--accent-gold);opacity:.7}

/* live badge */
.avail-cal-live{
  display:flex;align-items:center;gap:.4rem;
  font-family:'Outfit',sans-serif;
  font-size:.65rem;letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(106,192,136,.8);
  flex-shrink:0;
}
.avail-live-dot{
  width:6px;height:6px;border-radius:50%;
  background:#6ac088;
  box-shadow:0 0 8px rgba(106,192,136,.7);
  animation:livePulse 2s ease-in-out infinite;
}
@keyframes livePulse{
  0%,100%{opacity:1;box-shadow:0 0 6px rgba(106,192,136,.6)}
  50%{opacity:.5;box-shadow:0 0 14px rgba(106,192,136,.3)}
}

/* gold accent line below title bar */
.avail-calendar-accent{
  height:2px;
  background:linear-gradient(90deg,transparent 0%,rgba(201,169,110,.4) 20%,rgba(201,169,110,.7) 50%,rgba(201,169,110,.4) 80%,transparent 100%);
}

/* iframe */
.calendar-iframe{display:block;width:100%;height:700px;border:none;background:transparent; filter: invert(0.9) hue-rotate(180deg) brightness(1.2) contrast(1.1);}

/* footer note */
.avail-note{
  display:flex;align-items:center;justify-content:center;
  text-align:center;
  font-family:'Outfit',sans-serif;
  font-size:0.68rem;letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(138,138,146,.4);
  gap:.3rem;
  margin-top: 2rem;
}
