/* Cloud Studios  — 28th DEC Version (SEO-first, fully responsive) */
:root{
  --bg:#070708;
  --surface:#101115;
  --surface-2:#141823;
  --surface-3:#202636;
  --surface-4:#2a3349;
  --text:#f5f6f7;
  --muted:#b9bdc5;
  --line:rgba(255,255,255,.10);
  --gold:#D9B878; /*  */
  --blue:#2E3E56; /* brand blue accent */
  --shadow: 0 10px 28px rgba(0,0,0,.45);
  --radius:18px;
  --radius-lg:26px;
  --container: 1300px;
  --pad: clamp(16px, 2.4vw, 28px);
  --h1: clamp(28px, 3.3vw, 46px);
  --h2: clamp(20px, 2.1vw, 30px);
  --h3: clamp(16px, 1.5vw, 20px);
  --p: clamp(14px, 1.1vw, 16px);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Poppins", "Noto Sans", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
  text-rendering: optimizeLegibility;
}
img, video{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:10px; }

.container{
  width:min(var(--container), calc(100% - var(--pad)*2));
  margin:0 auto;
}
.section{
  padding: clamp(28px, 4.6vw, 56px) 0;
  border-top:1px solid var(--line);
}
.section.bg-1{ background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%); }
.section.bg-2{ background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%); }
.section.bg-3{ background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-3) 100%); }
.section.bg-4{ background: linear-gradient(180deg, var(--surface-3) 0%, var(--bg) 100%); }
.bg-5{ background: linear-gradient(180deg, var(--bg) 0%, var(--surface-4) 55%, var(--bg) 100%); }

.topbar{
  background:rgba(255,255,255,.03);
  border-bottom:1px solid var(--line);
  font-size:13px;
}
.topbar .inner{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar .left, .topbar .right{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(0,0,0,.35);
}
.pill strong{ color:var(--text); font-weight:600; }
.pill span{ color:var(--muted); }

/* Header / Nav */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,11,12,.86);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap:12px;
  align-items:center;
  padding: 14px 0;
}
.nav-left, .nav-right{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav-left{ justify-content:flex-end; }
.nav-right{ justify-content:flex-start; }

.nav a{
  font-size:14px;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  transition: color .18s ease, background .18s ease;
  white-space:nowrap;
}
.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}
.nav a.cta[aria-current="page"], .nav a.cta.active{
  color:var(--gold);
  background:rgba(217,184,120,.10);
  border-color:rgba(217,184,120,.35);
}
.nav a.cta:hover{
  color:var(--gold);
  background:rgba(217,184,120,.12);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transform: translateY(-100px);
}
.brand img{
  width:56px;
  height:56px;
  object-fit:contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
}
.brand .wordmark{ display:none; /* keep logo centered clean */ }

.hamburger{
  display:none;
  grid-column:3;
  grid-row:1;
  justify-self:end;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}
.hamburger:hover{ border-color:rgba(217,184,120,.6); }

.mobile-drawer{
  position:fixed;
  inset:0;
  display:none;
  z-index:100;
}
.mobile-drawer.active{ display:block; }
.drawer-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
}
.drawer-panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(420px, 92vw);
  background:linear-gradient(180deg, #0e0e10 0%, #141418 100%);
  border-left:1px solid var(--line);
  padding:22px;
  overflow:auto;
  box-shadow: var(--shadow);
}
.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.drawer-close{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}
.drawer-close:hover{ border-color:rgba(217,184,120,.6); }
.drawer-links{
  padding:14px 0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.drawer-links a{
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
}
.drawer-links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.06);
}
.drawer-links a.cta:hover{
  color:var(--gold);
  background:rgba(217,184,120,.12);
  border-color:rgba(217,184,120,.25);
}
.drawer-contact{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:grid;
  gap:10px;
  font-size:14px;
}
.drawer-contact a{ color:var(--text); }
.drawer-contact a:hover{ color:var(--gold); }

.lock-scroll{ overflow:hidden; }

/* Hero */
.hero{
  padding: clamp(16px, 3.6vw, 44px) 0 clamp(28px, 4.8vw, 56px);
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(217,184,120,.13), transparent 60%),
    radial-gradient(780px 360px at 80% 0%, rgba(46,62,86,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, transparent 70%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 32px);
  align-items:center;
}

/* Home Page Hero Stack */
body.home .hero-grid {
  display: flex !important;
  flex-direction: column;
}
body.home .hero-grid > .media-card {
  order: -1;
  width: 100%;
}
body.home .hero-grid > div:not(.media-card) {
  order: 1;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 12px;
  border:1px solid rgba(217,184,120,.35);
  border-radius:999px;
  background:rgba(217,184,120,.08);
  color:var(--gold);
  font-size:13px;
}
h1{
  font-size:var(--h1);
  line-height:1.12;
  margin:14px 0 10px;
  letter-spacing:-0.02em;
}

/* Hero subtitle: slightly larger for clarity */
.hero h1 + p{
  font-size: clamp(16px, 1.35vw, 19px);
  line-height:1.55;
  color: var(--text);
  opacity:.88;
}
h2{ font-size:var(--h2); margin:0 0 14px; letter-spacing:-0.01em; }
h3{ font-size:var(--h3); margin:0 0 10px; }
p{ font-size:var(--p); color:var(--muted); margin: 0 0 14px; }

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:650;
  font-size:14px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(217,184,120,.6);
  color:var(--gold);
  background:rgba(217,184,120,.12);
}
.btn.primary{
  border-color: rgba(217,184,120,.55);
  background:rgba(217,184,120,.12);
  color: var(--gold);
}
.btn.primary:hover{
  border-color: rgba(217,184,120,.9);
  background:rgba(217,184,120,.18);
}

.media-card{
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: rgba(0,0,0,.35);
  box-shadow: var(--shadow);
}
.media-card .caption{
  padding:12px 14px;
  font-size:13px;
  color:var(--muted);
  border-top:1px solid var(--line);
}

/* Cards / grids */
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding:18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.card:hover{ border-color:rgba(217,184,120,.35); }
.card .tag{
  display:inline-flex;
  font-size:12px;
  color:var(--gold);
  border:1px solid rgba(217,184,120,.35);
  background:rgba(217,184,120,.08);
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.card a.more{
  margin-top:10px;
  display:inline-flex;
  gap:8px;
  color:var(--text);
  font-weight:650;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.25);
}
.card a.more:hover{
  color:var(--gold);
  border-color:rgba(217,184,120,.6);
  background:rgba(217,184,120,.12);
}

/* Split layout: 4 left + 2 right (home) */
.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(14px, 2.4vw, 26px);
  align-items:start;
}
.stack{ display:grid; gap:14px; }

.note{
  border-left:3px solid rgba(217,184,120,.75);
  padding:12px 14px;
  background:rgba(217,184,120,.07);
  border-radius:14px;
  color:var(--muted);
}
.note strong{ color:var(--text); }

/* FAQ */
.faq{
  margin-top:16px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
}
.faq-item{ border-top:1px solid var(--line); }
.faq-item:first-child{ border-top:none; }
.faq-q{
  width:100%;
  text-align:left;
  padding:16px 16px;
  background:rgba(255,255,255,.03);
  border:none;
  color:var(--text);
  font-weight:650;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  font-size: var(--p);
}
.faq-q:hover{ color:var(--gold); background:rgba(217,184,120,.08); }
.faq-a{
  display:none;
  padding: 14px 16px 16px;
  color:var(--text);
  font-size: var(--p);
  line-height:1.6;
  background: rgba(255,255,255,.03);
}
.faq-item.open .faq-a{ display:block; }
.faq-icon{
  flex:0 0 auto;
  width:28px;
  height:28px;
  border-radius:10px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  color:var(--muted);
}
.faq-item.open .faq-icon{ color:var(--gold); border-color:rgba(217,184,120,.55); }

/* Footer */
.footer{
  padding: 28px 0;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.footer small, .footer a{ color:var(--muted); }
.footer a:hover{ color:var(--gold); }
.footer .cols{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.hr{ height:1px; background:var(--line); margin: 18px 0; }

/* Forms */
.form{ display:grid; gap:12px; }
.input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  color:var(--text);
  font-size:14px;
}
textarea{ min-height:140px; resize:vertical; }
label{ font-size:13px; color:var(--muted); }

/* Responsive */
@media (max-width: 1024px){
  .nav{ grid-template-columns: 1fr auto 1fr; }
  .nav-left, .nav-right{ display:none; }
  .hamburger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    justify-self:end;
  }
  .brand img{ width:52px; height:52px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn{ transition:none; }
}

/* Desktop logo overlay — 3x size, centered */
@media (min-width: 1025px){
  .nav{ position: relative; min-height: 120px; }
  .brand{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index: 5;
  }
  .brand img{ width: 168px; height: 168px; }
  .nav-left, .nav-right{ position:relative; z-index: 2; }
  .header{ overflow: visible; }
}
/* Mobile keeps compact logo */
@media (max-width: 1024px){
  .brand img{ width: 56px; height: 56px; }
}
@media (min-width: 1025px){
  .nav-right{ transform: translateX(130px); }
}
@media (min-width: 1025px){
  .brand img{ transform: scale(0.95); transform-origin: center; }
}

/* CTA microcopy */
.cta-subline{ margin-top:10px; color:var(--muted); font-size: var(--p); }
.cta-subline strong{ color:var(--gold); font-weight:650; }

.footer-legal{ display:flex; gap:14px; flex-wrap:wrap; margin-top:14px; }
.footer-legal a{ color:var(--muted); text-decoration:none; }
.footer-legal a:hover{ color:var(--gold); }

.brand{ position: relative; top: 80px; /* 👇  =  */ }
.brand img{ transform: scale(1.50); }
.nav-right{ transform: translateX(-0px); }

nav.nav{ height: 160px; /* ←  216 ， 160 */ }
.right .pill{ transform: translateX(14px); }

/* --- Conversion upgrades (Dec 30) --- */
.nav a.cta.cta-solid{
  background: var(--gold);
  color: #0b0b0f;
  border-color: rgba(217,184,120,.95);
  box-shadow: 0 8px 22px rgba(217,184,120,.18);
}
.nav a.cta.cta-solid:hover{
  background: rgba(217,184,120,.92);
  color:#0b0b0f;
  border-color: rgba(217,184,120,1);
}

.value-anchor{
  margin: 14px 0 14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.value-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(217,184,120,.14);
  border:1px solid rgba(217,184,120,.40);
  color: var(--gold);
}
.value-sep{ opacity:.6; }
.value-copy{ color: rgba(255,255,255,.86); }

.trust-note{ margin-top: 10px; font-size: .95rem; color: rgba(255,255,255,.80); }

.story-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.story-card{
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,.03);
}
.story-card h3{ margin: 0 0 8px; font-size: 1.05rem; color: rgba(255,255,255,.92); }
.story-card p{ margin: 0; color: rgba(255,255,255,.78); }
@media (max-width: 900px){
  .story-grid{ grid-template-columns: 1fr; }
}

.btn.primary.solid-gold{
  background: var(--gold);
  color:#0b0b0f;
  border-color: rgba(217,184,120,1);
  box-shadow: 0 10px 26px rgba(217,184,120,.20);
}
.btn.primary.solid-gold:hover{
  background: rgba(217,184,120,.92);
  color:#0b0b0f;
  border-color: rgba(217,184,120,1);
}

.pill{ transform: translateX(-10px); }
.left{ transform: translateX(8px); }

/* ===== Mobile ONLY: hide topbar ===== */
@media (max-width: 1024px){
  .topbar{ display: none !important; }
}

/* ===== Mobile ONLY overrides ===== */
@media (max-width: 1024px){
  nav.nav{
    min-height: 100px !important;
    height: 56px !important;
    padding: 8px 12px !important;
  }
  nav.nav .nav-inner,
  nav.nav .container{
    min-height: 56px !important;
    height: 56px !important;
    padding: 0 !important;
  }
}

@media (max-width: 1024px){
  nav.nav{ position: relative !important; }
  nav.nav .nav-left,
  nav.nav .nav-right{ display: none !important; }
}

@media (max-width: 1024px){ .cols{ display: none !important; } }
@media (max-width: 1024px){ .drawer-contact{ display: none !important; } }

@media (max-width: 1024px){
  .drawer-panel{
    height: auto !important;
    max-height: none !important;
  }
  .drawer-links{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-height: calc(44px * 4 + 10px * 3) !important;
    overflow: hidden !important;
    padding: 12px !important;
  }
  .drawer-links .cta{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 10px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
  .drawer-contact{ display: none !important; }
}

@media (max-width: 1024px){
  nav.nav{
    position: relative !important;
    height: 56px !important;
    overflow: hidden !important;
  }
  nav.nav .nav-left,
  nav.nav .nav-right{ display: none !important; }

  nav.nav .hamburger{
    display: flex !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 30 !important;
  }

  nav.nav a.brand{
    position: absolute !important;
    left: 50% !important;
    top: calc(50% + 5px) !important;
    transform: translate(-50%, -50%) !important;
    width: 100px !important;
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    pointer-events: auto !important;
  }
  nav.nav a.brand img{
    width: 100px !important;
    height: 100px !important;
    display: block !important;
  }
}

@media (max-width: 1024px){ .drawer-head .brand{ display: none !important; } }
@media (max-width: 1024px){ main{ margin-top: 0px !important; } }

@media (max-width: 1024px){
  body.home .container > .faq{ display: none !important; }
  body.home .container > h2,
  body.home .container > h2 + p{ display: none !important; }
  body.home .container > h2 + p + .faq{ display: none !important; }
  section.section.bg-3{ display: none !important; }
}

@media (max-width: 1024px){
  footer.footer > .container{
    position: relative !important;
    top: -40px !important;
  }
}
@media (max-width: 1024px){ section.section.bg-4{ display: none !important; } }
@media (max-width: 1024px){ section#day-in-the-life{ display: none !important; } }

@media (max-width: 1024px){
  nav.nav .nav-call{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #D9B878;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(217, 184, 120, 0.12);
    border: 1px solid rgba(217, 184, 120, 0.35);
    z-index: 30;
    white-space: nowrap;
  }
  nav.nav .nav-call:active{
    transform: translateY(-50%) scale(0.96);
  }
}

@media (min-width: 1025px){
  nav.nav .nav-call{ display: none; }
}

@media (max-width: 1024px){ .kicker{ display: none !important; } }

/* ================================ Cloud Gold Address Link (CTA Subline) ================================ */
.cta-subline a{
  color: #D9B878;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(217,184,120,0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.cta-subline a:hover{
  color: #c9a964;
  border-bottom-color: #c9a964;
}

/* ===== 9.4 Upgrade: Trust strip (lightweight, non-invasive) ===== */
.trust-strip{
  background: linear-gradient(180deg, rgba(217,184,120,.09), rgba(217,184,120,0));
  border-top: 1px solid rgba(217,184,120,.22);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust-strip .trust-strip-grid{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  padding: 12px 0;
}
.trust-pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16,17,21,.55);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-size: 13px;
  letter-spacing: .2px;
}
.trust-pill::before{ content:"•"; color: var(--gold); margin-right: 8px; }
.trust-strip{ display: none !important; }

@media (min-width: 769px){
  span.kicker, .kicker{ display:none !important; }
}
span.kicker, .kicker{ display: none !important; }

@media (min-width: 768px){
  body.home .section.secondary,
  body.home .section.bg-3,
  body.home .section.bg-4{ display: none; }
  body.home .hero{
    padding-top: 44px;
    padding-bottom: 56px;
  }
}

/* Media card image – desktop */
.img-16x9{
  width: 523.58px;
  max-width: 100%;
  height: 349px;
  overflow: hidden;
}
.img-16x9 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   FINAL: Hero Media (IMG/VIDEO) — single source of truth
========================================= */
:root{
  --media-max: 880px;
  --caption-h: 44px;
}
.media-card{
  position: relative;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0,0,0,.35);
  box-shadow: var(--shadow);
}
@media (min-width: 1025px){
  .media-card{ max-width: var(--media-max); }
  .hero-grid .media-card{ justify-self: end; }
}
.media-card > img,
.media-card > video{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  background: #000;
}
.media-card .caption{
  min-height: var(--caption-h);
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin: 0;
}
.hero-play-btn{
  position: absolute;
  right: 18px;
  bottom: calc(var(--caption-h) + 14px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.hero-play-btn:focus{
  outline: 2px solid rgba(255,255,255,.6);
  outline-offset: 2px;
}
.hero-video{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

footer .legal-id{
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 12px;
}

@media (max-width: 1024px){
  body.home section.section.bg-2{ display: none !important; }
}
@media (max-width: 1024px){
  section.section.bg-2{ display: block !important; }
  body.home main > section.section.bg-2:first-of-type{ display: none !important; }
}
@media (max-width: 1024px){
  h1{ margin-top: 26px !important; }
}

/* =========================
   INDEX HERO H1 – FINAL FIX
========================= */
.home .hero h1{ max-width: none !important; }
@media (min-width: 980px){
  .home .hero .hero-grid{
    grid-template-columns: 1.18fr 0.82fr;
  }
}
.home .hero h1 .nowrap{
  white-space: nowrap;
  display: inline-block;
}

.home .hero .hero-loc{
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

@media (min-width: 980px){
  header.header{
    min-height: 162px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  header.header .nav{ padding-bottom: 1px; }
}

.hero .hero-loc{
  font-size: 1.25rem;
  font-weight: 600;
}
main h1 + p{
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Form feedback (AJAX + redirect success) */
.form-feedback{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(217,184,120,.45);
  background:rgba(217,184,120,.08);
  margin:0 0 14px 0;
  font-weight:600;
}
.form-feedback.is-loading{ font-weight:500; opacity:.9; }
.form-feedback.is-success{ border-color:rgba(66,178,104,.55); background:rgba(66,178,104,.10); }
.form-feedback.is-error{ border-color:rgba(220,78,78,.55); background:rgba(220,78,78,.10); }
button[disabled]{ opacity:.7; cursor:not-allowed; }

input[type="date"],
input[type="time"],
input[type="datetime-local"]{
  color-scheme: dark !important;
  -webkit-appearance: auto !important;
  appearance: auto !important;

  /* reserve room so text never overlaps icon */
  padding-right: 54px !important;
}

/* Chrome / Edge / Safari */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator{
  /* make the actual native icon white */
  filter: invert(1) brightness(2.0) contrast(1.25) !important;
  opacity: 1 !important;
  cursor: pointer !important;

  /* enlarge clickable area so clicking the icon works reliably */
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  margin: 0 8px 0 0 !important;

  /* keep it visible (do NOT hide) */
  display: block !important;
}

/* hover/focus: never dim */
input[type="date"]:hover::-webkit-calendar-picker-indicator,
input[type="time"]:hover::-webkit-calendar-picker-indicator,
input[type="datetime-local"]:hover::-webkit-calendar-picker-indicator,
input[type="date"]:focus::-webkit-calendar-picker-indicator,
input[type="time"]:focus::-webkit-calendar-picker-indicator,
input[type="datetime-local"]:focus::-webkit-calendar-picker-indicator{
  opacity: 1 !important;
  filter: invert(1) brightness(2.2) contrast(1.3) !important;
}

/* Firefox: relies on color-scheme (no webkit pseudo support) */
@supports (-moz-appearance: none){
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"]{
    color-scheme: dark !important;
  }
}


/* ================================
   Phone CTA prominence (Cloud Gold)
   Makes all phone links/pills feel like "Book a Tour" CTA
================================== */

/* Any tel link: slightly stronger by default */
a[href^="tel:"]{
  font-weight:700;
  letter-spacing:.2px;
}

/* Phone in top bar: turn its pill into a gold CTA (modern browsers) */
.pill:has(a[href^="tel:"]){
  background: var(--gold);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.pill:has(a[href^="tel:"]) strong,
.pill:has(a[href^="tel:"]) span,
.pill:has(a[href^="tel:"]) a{
  color:#0b0b0c;
}

/* If the tel link appears inside hero actions as a button-style link */
.hero-actions a[href^="tel:"],
.hero-actions .btn[href^="tel:"]{
  background: var(--gold);
  color:#0b0b0c;
  border-color: transparent;
  font-weight:800;
}
.hero-actions a[href^="tel:"]:hover,
.hero-actions .btn[href^="tel:"]:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* Phone mention in footers / small text: keep it readable but not noisy */
.footer a[href^="tel:"],
.small a[href^="tel:"]{
  font-weight:700;
}
/* =========================================================
   ✅ FINAL — Date/Time Picker
   - icon is WHITE
   - icon ITSELF is clickable
   - NO fake icons
   - NO absolute positioning (prevents Chrome from hiding it)
   ========================================================= */

/* keep native controls in dark mode */
:root, html{ color-scheme: dark !important; }
/* =========================================
   Phone CTA: make tel: links look like gold buttons
   (Hero + Footer + Drawer only, not global)
========================================= */
.hero a[href^="tel:"],
.footer a[href^="tel:"],
.drawer-contact a[href^="tel:"]{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #0b0b0c;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.hero a[href^="tel:"]::before,
.footer a[href^="tel:"]::before,
.drawer-contact a[href^="tel:"]::before{
  content: "📞";
  font-size: 1.05em;
  line-height: 1;
}

.hero a[href^="tel:"]:hover,
.footer a[href^="tel:"]:hover,
.drawer-contact a[href^="tel:"]:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}


/* ===== Media embed consistency (qb-style) ===== */
.media-card{
  background: rgba(0,0,0,0.02);
}
.media-card img.media-embed,
.media-card video.media-embed{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(0,0,0,0.04); /* placeholder so it feels "embedded" */
  opacity: 0.001;
  transition: opacity 180ms ease-out;
}
.media-card img.media-embed.is-loaded,
.media-card video.media-embed.is-loaded{
  opacity: 1;
}
/* Meeting Rooms hero micro-copy */
.cta-preline{
  font-size: 0.85rem;
  margin: 12px 0 10px;
  opacity: 0.75;
  letter-spacing: 0.2px;
}

@media (max-width: 1024px){
  .cta-preline{ margin-top: 10px; }
}
/* Mobile call bar - hide on desktop */
.mobile-call-bar{
  display:none;
}

/* Only show on small screens */
@media (max-width: 768px){
  .mobile-call-bar{
    display:block;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    text-align:center;
    padding:14px 0;
    background:#c6a54a;
    color:#000;
    font-weight:600;
    z-index:9999;
    text-decoration:none;
  }

  body{
    padding-bottom:70px; /* prevent content overlap */
  }
}
/* ===== Hide floating Call/Book buttons on mobile ===== */
@media (max-width: 768px){
  .call-float{
    display: none !important;
  }
}
/* 放大右侧图片区域，让文字可读 */
@media (min-width: 1025px){
  .hero .hero-grid{
    grid-template-columns: 0.9fr 1.4fr !important;
  }

  .hero .media-card{
    max-width: none !important;
  }

  .hero .media-card img{
    width: 100%;
    height: auto;
    display: block;
  }
}
@media (min-width:1025px){
  .office-suites-page .hero .hero-grid{
    grid-template-columns:0.9fr 1.4fr;
  }

  .office-suites-page .media-card{
    max-width:none;
  }

  .office-suites-page .media-card img{
    width:100%;
    height:auto;
  }
}