/* ==========================================================================
   site-chrome.css — real supertravelai.com header + footer for /experiences
   Scoped to #hd (header) and footer.site-footer so it never touches the
   Experiences SPA styles in styles.css (.topbar, #view, cards, sheet …).
   Chrome vars + Mont font are isolated to the chrome subtrees.
   ========================================================================== */

@font-face{font-family:'Mont';src:url('/assets/Montserrat-Light.ttf');font-weight:300;font-display:swap}
@font-face{font-family:'Mont';src:url('/assets/Montserrat-SemiBold.ttf');font-weight:600;font-display:swap}
@font-face{font-family:'Mont';src:url('/assets/Montserrat-Bold.ttf');font-weight:800;font-display:swap}

/* Chrome-local design tokens (match the homepage exactly, isolated here) */
#hd, footer.site-footer{
  --ink:#132048; --blue:#2b74d6; --sky:#47a6ec; --soft:#eef4fb;
  --line:#dbe6f3; --muted:#5a6684;
  --grad:linear-gradient(135deg,#54abef 0%,#2b74d6 60%,#245fc0 100%);
  --shadow:0 18px 44px rgba(19,32,72,.12);
  --spring:cubic-bezier(.34,1.56,.64,1);
  font-family:'Mont',system-ui,sans-serif;
}
#hd a, footer.site-footer a{color:inherit;text-decoration:none}

/* ---------- shared width ---------- */
#hd .wrap, footer.site-footer .wrap{max-width:1180px;margin:0 auto;padding:0 26px}

/* ---------- buttons (chrome-scoped) ---------- */
#hd .btn{position:relative;display:inline-flex;align-items:center;gap:9px;font-weight:800;font-size:15px;padding:15px 28px;border-radius:40px;cursor:pointer;border:none;overflow:hidden;transition:transform .18s var(--spring),box-shadow .18s ease;font-family:inherit}
#hd .btn:active{transform:scale(.96)}
#hd .btn:before{content:'';position:absolute;top:0;left:-120%;width:60%;height:100%;background:linear-gradient(120deg,transparent,rgba(255,255,255,.45),transparent);transform:skewX(-20deg);transition:left .6s ease}
#hd .btn:hover:before{left:140%}
#hd .btn-primary{background:var(--grad);color:#fff;box-shadow:0 10px 26px rgba(43,116,214,.36);background-size:180% 180%;background-position:0 0;transition:transform .18s var(--spring),box-shadow .18s,background-position .5s}
#hd .btn-primary:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(43,116,214,.5);background-position:100% 100%}

/* ---------- NAV (permanently in the homepage "solid" state) ---------- */
#hd{position:relative;z-index:100;padding:12px 0;background:rgba(255,255,255,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);box-shadow:0 2px 20px rgba(19,32,72,.08)}
#hd .nav{display:flex;align-items:center;justify-content:space-between;gap:20px}
#hd .logo{height:34px;width:auto}
#hd .logo.white{display:none}   /* over-white page: use the dark logo like header.solid */
#hd .logo.dark{display:block}
#hd ul{display:flex;gap:24px;list-style:none;font-size:13.5px;font-weight:600;margin:0;padding:0}
#hd ul a{position:relative;color:var(--muted);transition:color .2s;white-space:nowrap}
#hd ul a:after{content:'';position:absolute;left:0;right:100%;bottom:-5px;height:2px;background:var(--grad);border-radius:2px;transition:right .25s ease}
#hd ul a:hover{color:var(--blue)}
#hd ul a:hover:after{right:0}
#hd ul a.active{color:var(--blue)}
#hd ul a.active:after{right:0}
#hd .navcta{padding:11px 22px;font-size:13.5px}
#hd .burger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px}
#hd .burger span{width:24px;height:2.5px;background:var(--ink);border-radius:2px}

/* ---------- FOOTER ---------- */
footer.site-footer{background:var(--ink);color:#cdd8ee;padding:64px 0 34px;margin-top:24px}
footer.site-footer .foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;gap:40px}
footer.site-footer .flogo{height:32px;margin-bottom:16px;width:auto}
footer.site-footer .fabout{font-size:14px;color:#9fb0d4;font-weight:300;line-height:1.6;max-width:36ch}
footer.site-footer h4{font-size:12px;letter-spacing:1.4px;text-transform:uppercase;color:#7f92bd;margin-bottom:16px;font-weight:800}
footer.site-footer ul{list-style:none;margin:0;padding:0}
footer.site-footer ul li{margin-bottom:11px}
footer.site-footer ul a{font-size:14px;color:#cdd8ee;font-weight:300;transition:color .18s,padding-left .18s}
footer.site-footer ul a:hover{color:#fff;padding-left:4px}
footer.site-footer .foot-bot{display:flex;justify-content:space-between;align-items:center;margin-top:48px;padding-top:26px;border-top:1px solid rgba(255,255,255,.1);font-size:13px;color:#8496bd;flex-wrap:wrap;gap:12px}
footer.site-footer .foot-bot a{color:#8496bd}

/* ---------- RESPONSIVE (mirror the homepage breakpoints) ---------- */
@media(max-width:960px){
  #hd .nav{position:relative}
  #hd ul,#hd .navcta{display:none}
  #hd .burger{display:flex}
  #hd ul.open{display:flex;flex-direction:column;gap:2px;position:absolute;top:calc(100% + 14px);left:0;right:0;background:rgba(255,255,255,.97);backdrop-filter:blur(18px);border:1px solid var(--line);border-radius:16px;padding:12px 14px;box-shadow:0 16px 38px rgba(19,32,72,.16)}
  #hd ul.open li{width:100%}
  #hd ul.open a{display:block;color:var(--ink);padding:12px 12px;border-radius:10px;font-size:15px}
  #hd ul.open a:hover{background:var(--soft);color:var(--blue)}
  #hd ul.open a:after{display:none}
  footer.site-footer .foot-grid{grid-template-columns:1fr 1fr 1fr;gap:32px}
  footer.site-footer .foot-grid>div:first-child{grid-column:1 / -1}
}
@media(max-width:640px){
  #hd .wrap, footer.site-footer .wrap{padding:0 20px}
  footer.site-footer .foot-grid{grid-template-columns:1fr 1fr;gap:26px}
  footer.site-footer .foot-bot{flex-direction:column;align-items:flex-start;text-align:left}
}
@media(max-width:440px){
  #hd .wrap, footer.site-footer .wrap{padding:0 16px}
}
