@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..700,30..100&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400;500&display=swap');

.sqyd-hd {
  --ink:#0E0E0D;
  --ink-2:#181816;
  --cream:#F4F0E8;
  --ivory:#FAF7F1;
  --paper:#FFFFFF;
  --gold:#A87A3E;
  --gold-2:#C9A063;
  --gold-deep:#6E5024;
  --muted:#6B6A64;
  --line:#E3DCCC;
  --line-ink:#2A2A22;
  --serif:'Fraunces','Times New Roman',serif;
  --sans:'Geist',-apple-system,BlinkMacSystemFont,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,monospace;
  --gutter:clamp(18px,4vw,56px);
  --bar-h:74px;
  font-family:var(--sans);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-feature-settings:'ss01' on,'cv11' on;
  width:100%;
  position:relative;
  z-index:1000;
}
.sqyd-hd *,.sqyd-hd *::before,.sqyd-hd *::after{box-sizing:border-box;}
.sqyd-hd a{color:inherit;text-decoration:none;}
.sqyd-hd ul{margin:0;padding:0;list-style:none;}
.sqyd-hd button{font:inherit;cursor:pointer;border:0;background:none;color:inherit;}
.sqyd-hd img,.sqyd-hd svg{display:block;}
.sqyd-hd svg{flex-shrink:0;}

/* Elementor wrapper safety */
.sqyd-elementor-site-header .elementor-widget-container{width:100%;}
.sqyd-elementor-site-header.elementor-section{z-index:999;}

.sqyd-hd__top{background:var(--ink);color:var(--cream);border-bottom:1px solid var(--line-ink);font-size:12px;}
.sqyd-hd__top-inner{max-width:1400px;margin:0 auto;padding:9px var(--gutter);display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:38px;}
.sqyd-hd__tagline{display:inline-flex;align-items:center;gap:9px;letter-spacing:.08em;color:rgba(244,240,232,.70);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:0;}
.sqyd-hd__tagline .dot{width:6px;height:6px;border-radius:50%;background:var(--gold-2);flex-shrink:0;animation:sqydHdPulse 2.2s ease-in-out infinite;}
@keyframes sqydHdPulse{0%,100%{opacity:.4;}50%{opacity:1;}}
.sqyd-hd__top-right{display:inline-flex;align-items:center;gap:22px;white-space:nowrap;}
.sqyd-hd__top-right a{display:inline-flex;align-items:center;gap:7px;color:rgba(244,240,232,.85);letter-spacing:.04em;transition:color .2s;}
.sqyd-hd__top-right a:hover{color:var(--gold-2);}
.sqyd-hd__top-right a svg{width:13px;height:13px;}
.sqyd-hd__top-right .ph{font-family:var(--mono);color:var(--gold-2);}
.sqyd-hd__top-sep{width:1px;height:13px;background:rgba(244,240,232,.2);}

.sqyd-hd__main{position:sticky;top:0;z-index:1000;background:rgba(250,247,241,.94);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--line);transition:box-shadow .25s,background .25s;}
.admin-bar .sqyd-hd__main{top:32px;}
.sqyd-hd__main.is-stuck{background:rgba(250,247,241,.98);box-shadow:0 6px 28px rgba(14,14,13,.07);}
.sqyd-hd__main-inner{max-width:1400px;margin:0 auto;padding:0 var(--gutter);height:var(--bar-h);display:flex;align-items:center;justify-content:space-between;gap:24px;}
.sqyd-hd__logo{display:inline-flex;align-items:center;flex-shrink:0;min-width:max-content;}
.sqyd-hd__logo img{height:42px;width:auto;object-fit:contain;transition:height .25s;max-width:190px;}
.sqyd-hd__main.is-stuck .sqyd-hd__logo img{height:36px;}
.sqyd-hd__logo-text{font-family:var(--serif);font-size:26px;letter-spacing:-.02em;color:var(--ink);font-weight:500;line-height:1;}
.sqyd-hd__logo-text em{font-style:italic;color:var(--gold);}

.sqyd-hd__nav{display:flex;align-items:center;height:100%;min-width:0;}
.sqyd-hd__nav>ul{display:flex;align-items:center;height:100%;gap:4px;}
.sqyd-hd__nav>ul>li{position:relative;height:100%;display:flex;align-items:center;}
.sqyd-hd__nav>ul>li>a{display:inline-flex;align-items:center;gap:6px;height:100%;padding:0 14px;font-size:13.5px;letter-spacing:.02em;color:var(--ink-2);position:relative;transition:color .2s;white-space:nowrap;}
.sqyd-hd__nav>ul>li>a:hover{color:var(--ink);}
.sqyd-hd__nav>ul>li>a .chev{width:11px;height:11px;transition:transform .25s;opacity:.6;}
.sqyd-hd__nav>ul>li:hover>a .chev{transform:rotate(180deg);}
.sqyd-hd__nav>ul>li>a::after{content:'';position:absolute;left:14px;right:14px;bottom:22px;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:center;transition:transform .25s ease;}
.sqyd-hd__nav>ul>li>a:hover::after,.sqyd-hd__nav>ul>li.is-active>a::after{transform:scaleX(1);}
.sqyd-hd__dd{position:absolute;top:100%;left:8px;min-width:230px;background:var(--paper);border:1px solid var(--line);box-shadow:0 18px 40px rgba(14,14,13,.1);padding:8px;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .2s,transform .2s,visibility .2s;}
.sqyd-hd__nav>ul>li:hover>.sqyd-hd__dd{opacity:1;visibility:visible;transform:translateY(0);}
.sqyd-hd__dd li a{display:flex;flex-direction:column;gap:2px;padding:11px 14px;font-size:13.5px;color:var(--ink-2);transition:background .18s,color .18s;}
.sqyd-hd__dd li a:hover{background:var(--cream);color:var(--ink);}
.sqyd-hd__dd li a .sub{font-size:11px;color:var(--muted);letter-spacing:.01em;}

.sqyd-hd__actions{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.sqyd-hd__login{display:inline-flex;align-items:center;gap:7px;font-size:13px;letter-spacing:.02em;color:var(--ink-2);padding:9px 6px;transition:color .2s;white-space:nowrap;}
.sqyd-hd__login:hover{color:var(--gold-deep);}
.sqyd-hd__login svg{width:15px;height:15px;}
.sqyd-hd__btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;padding:11px 18px;font-size:12.5px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;border:1px solid transparent;transition:all .2s ease;white-space:nowrap;line-height:1;}
.sqyd-hd__btn--ghost{border-color:var(--line);color:var(--ink);}
.sqyd-hd__btn--ghost:hover{background:var(--ink);color:var(--cream);border-color:var(--ink);}
.sqyd-hd__btn--gold{background:var(--gold);color:var(--ink);border-color:var(--gold);}
.sqyd-hd__btn--gold:hover{background:var(--gold-deep);color:var(--cream);border-color:var(--gold-deep);}

.sqyd-hd__burger{display:none;width:44px;height:44px;align-items:center;justify-content:center;flex-shrink:0;border:1px solid var(--line);background:transparent;transition:background .2s;}
.sqyd-hd__burger:hover{background:var(--cream);}
.sqyd-hd__burger span{position:relative;width:18px;height:1.5px;background:var(--ink);transition:background .2s;}
.sqyd-hd__burger span::before,.sqyd-hd__burger span::after{content:'';position:absolute;left:0;width:18px;height:1.5px;background:var(--ink);transition:transform .25s ease,top .25s ease;}
.sqyd-hd__burger span::before{top:-6px;}
.sqyd-hd__burger span::after{top:6px;}
.sqyd-hd.is-menu-open .sqyd-hd__burger span{background:transparent;}
.sqyd-hd.is-menu-open .sqyd-hd__burger span::before{top:0;transform:rotate(45deg);}
.sqyd-hd.is-menu-open .sqyd-hd__burger span::after{top:0;transform:rotate(-45deg);}

.sqyd-hd__backdrop{position:fixed;inset:0;background:rgba(14,14,13,.5);opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s;z-index:1001;}
.sqyd-hd.is-menu-open .sqyd-hd__backdrop{opacity:1;visibility:visible;}
.sqyd-hd__drawer{position:fixed;top:0;right:0;width:min(400px,86vw);height:100%;height:100dvh;background:var(--ivory);border-left:1px solid var(--line);z-index:1002;transform:translateX(100%);transition:transform .34s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;overflow-y:auto;overscroll-behavior:contain;}
.sqyd-hd.is-menu-open .sqyd-hd__drawer{transform:translateX(0);}
.sqyd-hd__drawer-head{display:flex;align-items:center;justify-content:space-between;padding:18px var(--gutter);border-bottom:1px solid var(--line);background:var(--ink);color:var(--cream);flex-shrink:0;}
.sqyd-hd__drawer-head .lbl{font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-2);font-weight:500;}
.sqyd-hd__drawer-close{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(244,240,232,.25);color:var(--cream);transition:background .2s;}
.sqyd-hd__drawer-close:hover{background:rgba(244,240,232,.1);}
.sqyd-hd__drawer-close svg{width:16px;height:16px;}
.sqyd-hd__drawer-nav{padding:8px 0;flex:1;}
.sqyd-hd__drawer-nav>li{border-bottom:1px solid var(--line);}
.sqyd-hd__drawer-nav>li>a,.sqyd-hd__drawer-nav>li>.sqyd-hd__m-toggle{display:flex;align-items:center;justify-content:space-between;width:100%;padding:16px var(--gutter);font-family:var(--serif);font-size:18px;letter-spacing:-.005em;color:var(--ink);text-align:left;}
.sqyd-hd__m-toggle .chev{width:16px;height:16px;color:var(--gold);transition:transform .25s;}
.sqyd-hd__drawer-nav>li.is-expanded .sqyd-hd__m-toggle .chev{transform:rotate(180deg);}
.sqyd-hd__m-sub{max-height:0;overflow:hidden;transition:max-height .3s ease;background:var(--cream);}
.sqyd-hd__drawer-nav>li.is-expanded .sqyd-hd__m-sub{max-height:400px;}
.sqyd-hd__m-sub a{display:block;padding:13px var(--gutter) 13px calc(var(--gutter) + 4px);font-size:14px;color:var(--ink-2);border-top:1px solid var(--line);}
.sqyd-hd__m-sub a:hover{color:var(--gold-deep);}
.sqyd-hd__drawer-foot{padding:22px var(--gutter) calc(22px + env(safe-area-inset-bottom));border-top:1px solid var(--line);background:var(--ivory);display:flex;flex-direction:column;gap:10px;flex-shrink:0;}
.sqyd-hd__drawer-foot .sqyd-hd__btn{width:100%;padding:14px;font-size:13px;}
.sqyd-hd__drawer-foot .m-login{display:flex;align-items:center;justify-content:center;gap:8px;padding:13px;font-size:13px;letter-spacing:.04em;color:var(--ink-2);border:1px solid var(--line);}
.sqyd-hd__drawer-foot .m-login svg{width:15px;height:15px;}
.sqyd-hd__drawer-contact{margin-top:8px;padding-top:16px;border-top:1px solid var(--line);font-size:12px;color:var(--muted);text-align:center;line-height:1.7;}
.sqyd-hd__drawer-contact a{color:var(--gold-deep);font-family:var(--mono);}

@media (max-width:1240px){.sqyd-hd__nav>ul>li>a{padding:0 10px;font-size:13px;}.sqyd-hd__actions{gap:8px}.sqyd-hd__btn{padding:10px 14px;font-size:12px}}
@media (max-width:1080px){.sqyd-hd__nav,.sqyd-hd__actions{display:none}.sqyd-hd__burger{display:inline-flex}.sqyd-hd__main-inner{height:68px}.sqyd-hd__logo img{height:38px}.sqyd-hd__main.is-stuck .sqyd-hd__logo img{height:34px}}
@media (max-width:782px){.admin-bar .sqyd-hd__main{top:46px}}
@media (max-width:600px){.sqyd-hd__tagline{font-size:11px}.sqyd-hd__top-right .nri-txt{display:none}.sqyd-hd__top-sep{display:none}.sqyd-hd__top-right{gap:12px}.sqyd-hd__top-inner{padding-top:8px;padding-bottom:8px}.sqyd-hd__main-inner{gap:16px}.sqyd-hd__logo img{height:34px;max-width:150px}}
@media (max-width:460px){.sqyd-hd__tagline span.txt{display:none}.sqyd-hd__top-inner{justify-content:flex-end}.sqyd-hd__top .sqyd-hd__tagline{display:none}.sqyd-hd__top-right a span:not(.ph){display:none}.sqyd-hd__drawer{width:min(390px,92vw)}}

/* Logged-in member state */
.sqyd-hd__member{position:relative;display:flex;align-items:center;height:100%;}
.sqyd-hd__member-link .chev{width:11px;height:11px;opacity:.65;transition:transform .2s;}
.sqyd-hd__member:hover .sqyd-hd__member-link .chev{transform:rotate(180deg);}
.sqyd-hd__member-dd{position:absolute;right:0;top:calc(100% + 8px);min-width:210px;background:var(--paper);border:1px solid var(--line);box-shadow:0 18px 40px rgba(14,14,13,.1);padding:8px;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .2s,visibility .2s,transform .2s;z-index:1004;}
.sqyd-hd__member:hover .sqyd-hd__member-dd{opacity:1;visibility:visible;transform:translateY(0);}
.sqyd-hd__member-dd li a{display:block;padding:11px 14px;font-size:13.5px;color:var(--ink-2);transition:background .18s,color .18s;}
.sqyd-hd__member-dd li a:hover{background:var(--cream);color:var(--ink);}
.sqyd-hd__drawer-member-link{background:var(--cream);justify-content:center!important;}

/* Phase 1.3.48 — logged-in member header replaces marketing nav */
.sqyd-hd--member .sqyd-hd__member-main{position:sticky;top:0;z-index:1000;background:rgba(250,247,241,.98);backdrop-filter:blur(12px);border-bottom:1px solid var(--line)}
.sqyd-hd--member .sqyd-hd__main-inner{height:62px;gap:18px}.sqyd-hd--member .sqyd-hd__logo img{height:34px}.sqyd-hd__browse{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--gold-deep);border-bottom:1px solid var(--gold);white-space:nowrap}.sqyd-hd__member-search{flex:1;max-width:560px;margin-left:auto}.sqyd-hd__member-search input{width:100%;height:40px;border:1px solid var(--line);background:var(--paper);padding:0 14px;font:13px var(--sans);outline:none}.sqyd-hd__member-actions{display:flex;align-items:center;gap:10px;flex-shrink:0}.sqyd-hd__quick{position:relative}.sqyd-hd__quick-btn{height:40px;background:var(--ink);color:var(--cream);border:1px solid var(--ink);padding:0 15px;font-size:11px;letter-spacing:.12em;text-transform:uppercase}.sqyd-hd__quick-dd{position:absolute;right:0;top:calc(100% + 8px);min-width:210px;background:var(--paper);border:1px solid var(--line);box-shadow:0 18px 40px rgba(14,14,13,.12);padding:8px;opacity:0;visibility:hidden;transform:translateY(6px);transition:.2s;z-index:1005}.sqyd-hd__quick:hover .sqyd-hd__quick-dd{opacity:1;visibility:visible;transform:translateY(0)}.sqyd-hd__quick-dd a{display:block;padding:10px 12px;font-size:13px;color:var(--ink)}.sqyd-hd__quick-dd a:hover{background:var(--cream)}.sqyd-hd__icon{position:relative;width:40px;height:40px;border:1px solid var(--line);background:var(--paper);display:flex;align-items:center;justify-content:center}.sqyd-hd__icon span{position:absolute;top:8px;right:8px;width:7px;height:7px;border-radius:50%;background:var(--gold)}.sqyd-hd__member-chip{display:flex;align-items:center;gap:9px;border-left:1px solid var(--line);padding-left:12px}.sqyd-hd__member-chip b{width:36px;height:36px;border-radius:50%;background:var(--ink);color:var(--gold-2);display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-weight:400}.sqyd-hd__member-chip span{display:flex;flex-direction:column;font-size:13px;color:var(--ink);line-height:1.15}.sqyd-hd__member-chip small{font-size:9px;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-top:3px}.sqyd-hd--member .sqyd-hd__burger{display:none}
@media(max-width:1080px){.sqyd-hd--member .sqyd-hd__member-search,.sqyd-hd--member .sqyd-hd__browse,.sqyd-hd__member-chip span,.sqyd-hd__quick{display:none}.sqyd-hd--member .sqyd-hd__burger{display:inline-flex}.sqyd-hd--member .sqyd-hd__member-actions{margin-left:auto}}
@media(max-width:600px){.sqyd-hd--member .sqyd-hd__top{display:none}.sqyd-hd--member .sqyd-hd__main-inner{height:58px}.sqyd-hd--member .sqyd-hd__logo img{height:30px}}

/* ======================================================================
   Phase 1.3.49 — stable member desk header, mobile drawer and footer-safe alignment
   ====================================================================== */
.sqyd-hd--member{--bar-h:64px;z-index:1200;background:transparent!important;}
.sqyd-hd--member .sqyd-hd__top{display:block!important;background:var(--ink)!important;color:var(--cream)!important;border-bottom:1px solid var(--line-ink)!important;}
.sqyd-hd--member .sqyd-hd__top-inner{height:34px!important;min-height:34px!important;padding:0 var(--gutter)!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:18px!important;max-width:1440px!important;margin:0 auto!important;}
.sqyd-hd--member .sqyd-hd__tagline{font-family:var(--mono)!important;font-size:11px!important;letter-spacing:.08em!important;color:rgba(244,240,232,.68)!important;min-width:0!important;}
.sqyd-hd--member .sqyd-hd__top-right{display:flex!important;align-items:center!important;gap:14px!important;font-family:var(--mono)!important;font-size:11px!important;white-space:nowrap!important;}
.sqyd-hd--member .sqyd-hd__top-right a{color:rgba(244,240,232,.78)!important;display:inline-flex!important;align-items:center!important;gap:6px!important;}
.sqyd-hd--member .sqyd-hd__top-right .ph{color:var(--gold-2)!important;}
.sqyd-hd--member .sqyd-hd__main{position:sticky!important;top:0!important;z-index:1200!important;background:rgba(250,247,241,.98)!important;border-bottom:1px solid var(--line)!important;box-shadow:none!important;backdrop-filter:blur(14px)!important;-webkit-backdrop-filter:blur(14px)!important;}
.admin-bar .sqyd-hd--member .sqyd-hd__main{top:32px!important;}
.sqyd-hd--member .sqyd-hd__main-inner{height:64px!important;max-width:1440px!important;margin:0 auto!important;padding:0 var(--gutter)!important;display:grid!important;grid-template-columns:auto auto minmax(220px,560px) auto auto!important;align-items:center!important;gap:22px!important;}
.sqyd-hd--member .sqyd-hd__logo{display:inline-flex!important;align-items:center!important;min-width:0!important;}
.sqyd-hd--member .sqyd-hd__logo img{height:34px!important;max-width:150px!important;width:auto!important;object-fit:contain!important;}
.sqyd-hd--member .sqyd-hd__browse{font:500 12px/1 var(--sans)!important;letter-spacing:.01em!important;text-transform:none!important;color:var(--ink)!important;border:0!important;white-space:nowrap!important;}
.sqyd-hd--member .sqyd-hd__browse:hover{color:var(--gold-deep)!important;}
.sqyd-hd--member .sqyd-hd__member-search{display:block!important;max-width:none!important;width:100%!important;margin:0!important;}
.sqyd-hd--member .sqyd-hd__member-search input{width:100%!important;height:42px!important;border:1px solid var(--line)!important;background:var(--paper)!important;border-radius:0!important;padding:0 15px!important;font:13.5px/1 var(--sans)!important;color:var(--ink)!important;outline:none!important;}
.sqyd-hd--member .sqyd-hd__member-search input:focus{border-color:var(--gold)!important;box-shadow:0 0 0 3px rgba(168,122,62,.10)!important;}
.sqyd-hd--member .sqyd-hd__member-actions{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:10px!important;min-width:0!important;}
.sqyd-hd--member .sqyd-hd__quick{position:relative!important;display:block!important;}
.sqyd-hd--member .sqyd-hd__quick summary{list-style:none!important;}
.sqyd-hd--member .sqyd-hd__quick summary::-webkit-details-marker{display:none!important;}
.sqyd-hd--member .sqyd-hd__quick-btn{height:40px!important;min-width:88px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:var(--ink)!important;color:var(--cream)!important;border:1px solid var(--ink)!important;padding:0 15px!important;font:500 11px/1 var(--sans)!important;letter-spacing:.12em!important;text-transform:uppercase!important;white-space:nowrap!important;cursor:pointer!important;}
.sqyd-hd--member .sqyd-hd__quick-btn:hover{background:var(--gold-deep)!important;border-color:var(--gold-deep)!important;}
.sqyd-hd--member .sqyd-hd__quick-dd{position:absolute!important;right:0!important;top:calc(100% + 8px)!important;min-width:220px!important;background:var(--paper)!important;border:1px solid var(--line)!important;box-shadow:0 18px 40px rgba(14,14,13,.14)!important;padding:8px!important;z-index:1400!important;display:none!important;}
.sqyd-hd--member .sqyd-hd__quick[open] .sqyd-hd__quick-dd{display:block!important;}
.sqyd-hd--member .sqyd-hd__quick-dd a{display:block!important;padding:11px 12px!important;font:13px/1.2 var(--sans)!important;color:var(--ink)!important;white-space:nowrap!important;}
.sqyd-hd--member .sqyd-hd__quick-dd a:hover{background:var(--cream)!important;color:var(--gold-deep)!important;}
.sqyd-hd--member .sqyd-hd__icon{width:40px!important;height:40px!important;border:1px solid var(--line)!important;background:var(--paper)!important;display:flex!important;align-items:center!important;justify-content:center!important;position:relative!important;color:var(--gold-deep)!important;flex:0 0 40px!important;}
.sqyd-hd--member .sqyd-hd__icon:hover{background:var(--cream)!important;}
.sqyd-hd--member .sqyd-hd__notif-dot{position:absolute!important;top:8px!important;right:8px!important;width:7px!important;height:7px!important;background:var(--gold)!important;border-radius:50%!important;border:1px solid var(--paper)!important;}
.sqyd-hd--member .sqyd-hd__member-chip{display:flex!important;align-items:center!important;gap:10px!important;border-left:1px solid var(--line)!important;padding-left:12px!important;min-width:0!important;color:var(--ink)!important;}
.sqyd-hd--member .sqyd-hd__member-chip b{width:38px!important;height:38px!important;border-radius:50%!important;background:var(--ink)!important;color:var(--gold-2)!important;display:flex!important;align-items:center!important;justify-content:center!important;font-family:var(--serif)!important;font-weight:400!important;font-size:14px!important;flex:0 0 38px!important;}
.sqyd-hd--member .sqyd-hd__member-chip span{display:flex!important;flex-direction:column!important;font:500 13px/1.1 var(--sans)!important;color:var(--ink)!important;max-width:140px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
.sqyd-hd--member .sqyd-hd__member-chip small{font:500 9px/1.1 var(--sans)!important;letter-spacing:.12em!important;text-transform:uppercase!important;color:var(--gold)!important;margin-top:4px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
.sqyd-hd--member .sqyd-hd__burger{display:none!important;width:42px!important;height:42px!important;border:1px solid var(--line)!important;background:var(--paper)!important;align-items:center!important;justify-content:center!important;margin-left:auto!important;}
.sqyd-hd--member .sqyd-hd__member-strip{background:var(--ink)!important;color:rgba(244,240,232,.72)!important;border-bottom:1px solid var(--line-ink)!important;}
.sqyd-hd--member .sqyd-hd__member-strip-inner{max-width:1440px!important;margin:0 auto!important;padding:9px var(--gutter)!important;display:flex!important;align-items:center!important;gap:18px!important;overflow:auto!important;white-space:nowrap!important;font:12px/1 var(--sans)!important;scrollbar-width:none!important;}
.sqyd-hd--member .sqyd-hd__member-strip-inner::-webkit-scrollbar{display:none!important;}
.sqyd-hd--member .sqyd-hd__member-strip strong{font:700 10px/1 var(--sans)!important;letter-spacing:.18em!important;text-transform:uppercase!important;color:var(--gold-2)!important;}
.sqyd-hd--member .sqyd-hd__member-strip a{color:var(--cream)!important;border-bottom:1px solid var(--gold)!important;padding-bottom:2px!important;}
.sqyd-hd--member .sqyd-hd__drawer-brand{padding:22px var(--gutter) 12px!important;border-bottom:1px solid var(--line)!important;}
.sqyd-hd--member .sqyd-hd__drawer-brand img{height:34px!important;width:auto!important;margin-bottom:12px!important;}
.sqyd-hd--member .sqyd-hd__drawer-brand p{margin:0!important;color:var(--muted)!important;font-size:12px!important;line-height:1.5!important;}
.sqyd-hd--member .sqyd-hd__drawer-search{padding:14px var(--gutter)!important;border-bottom:1px solid var(--line)!important;}
.sqyd-hd--member .sqyd-hd__drawer-search input{width:100%!important;height:42px!important;border:1px solid var(--line)!important;background:var(--paper)!important;padding:0 13px!important;font:14px/1 var(--sans)!important;}
.sqyd-hd__drawer-nav--member{padding:8px 0!important;display:flex!important;flex-direction:column!important;}
.sqyd-hd__drawer-nav--member a{display:flex!important;align-items:center!important;justify-content:space-between!important;padding:15px var(--gutter)!important;border-bottom:1px solid var(--line)!important;font-family:var(--sans)!important;font-size:15px!important;color:var(--ink)!important;}
.sqyd-hd__drawer-nav--member a:hover{background:var(--cream)!important;color:var(--gold-deep)!important;}

@media(max-width:1180px){
  .sqyd-hd--member .sqyd-hd__main-inner{grid-template-columns:auto auto minmax(180px,1fr) auto!important;gap:16px!important;}
  .sqyd-hd--member .sqyd-hd__member-chip span{display:none!important;}
}
@media(max-width:980px){
  .sqyd-hd--member .sqyd-hd__main-inner{grid-template-columns:auto 1fr auto!important;height:60px!important;}
  .sqyd-hd--member .sqyd-hd__browse,.sqyd-hd--member .sqyd-hd__member-actions,.sqyd-hd--member .sqyd-hd__member-search{display:none!important;}
  .sqyd-hd--member .sqyd-hd__burger{display:inline-flex!important;grid-column:3!important;}
  .sqyd-hd--member .sqyd-hd__logo{grid-column:1!important;}
}
@media(max-width:782px){.admin-bar .sqyd-hd--member .sqyd-hd__main{top:46px!important;}}
@media(max-width:640px){
  .sqyd-hd{--gutter:18px;}
  .sqyd-hd--member .sqyd-hd__top-inner{height:32px!important;min-height:32px!important;}
  .sqyd-hd--member .sqyd-hd__tagline .txt{max-width:45vw!important;overflow:hidden!important;text-overflow:ellipsis!important;}
  .sqyd-hd--member .sqyd-hd__top-right{font-size:10px!important;gap:8px!important;}
  .sqyd-hd--member .sqyd-hd__top-right a:nth-of-type(2),.sqyd-hd--member .sqyd-hd__top-sep{display:none!important;}
  .sqyd-hd--member .sqyd-hd__main-inner{height:58px!important;}
  .sqyd-hd--member .sqyd-hd__logo img{height:30px!important;max-width:132px!important;}
  .sqyd-hd--member .sqyd-hd__member-strip-inner{font-size:11px!important;gap:14px!important;padding-top:8px!important;padding-bottom:8px!important;}
  .sqyd-hd--member .sqyd-hd__drawer{width:min(410px,92vw)!important;}
}
@media(max-width:420px){
  .sqyd-hd--member .sqyd-hd__top{display:none!important;}
  .sqyd-hd--member .sqyd-hd__member-strip-inner span:nth-child(n+3){display:none!important;}
}

/* Footer mobile polish for Elementor-generated footer */
.sqyd-editable-footer,.sqyd-editable-footer-bottom{overflow:hidden;}
.sqyd-editable-footer > .elementor-container{display:flex!important;align-items:flex-start!important;gap:26px!important;}
.sqyd-editable-footer-brand .elementor-heading-title{line-height:1.05!important;}
@media(max-width:1024px){
  .sqyd-editable-footer{padding:54px 0 34px!important;}
  .sqyd-editable-footer > .elementor-container{display:grid!important;grid-template-columns:1.3fr 1fr 1fr!important;gap:30px 24px!important;}
  .sqyd-footer-brand-col{grid-column:1 / -1!important;width:100%!important;}
  .sqyd-footer-col{width:100%!important;}
}
@media(max-width:700px){
  .sqyd-editable-footer{padding:44px 0 26px!important;}
  .sqyd-editable-footer > .elementor-container{display:grid!important;grid-template-columns:1fr 1fr!important;gap:26px 18px!important;padding-left:22px!important;padding-right:22px!important;}
  .sqyd-footer-brand-col{grid-column:1 / -1!important;}
  .sqyd-footer-tagline .elementor-widget-container,.sqyd-footer-contact .elementor-widget-container{max-width:none!important;font-size:13px!important;}
  .sqyd-footer-heading{margin:0 0 10px!important;}
  .elementor-widget-button.sqyd-footer-link{margin-bottom:8px!important;}
  .elementor-widget-button.sqyd-footer-link .elementor-button{font-size:12.5px!important;line-height:1.35!important;text-align:left!important;justify-content:flex-start!important;}
  .sqyd-editable-footer-bottom{padding:18px 0 calc(18px + env(safe-area-inset-bottom))!important;}
  .sqyd-editable-footer-bottom > .elementor-container{display:flex!important;flex-direction:column!important;gap:8px!important;padding-left:22px!important;padding-right:22px!important;}
  .sqyd-editable-footer-bottom .elementor-column{width:100%!important;}
  .sqyd-align-right .elementor-widget-container{text-align:left!important;}
}
@media(max-width:430px){
  .sqyd-editable-footer > .elementor-container{grid-template-columns:1fr!important;}
  .sqyd-editable-footer-brand .elementor-heading-title{font-size:26px!important;}
}

/* ======================================================================
   Phase 1.3.50 — mobile-first member header + compact mobile footer
   ====================================================================== */
@media (max-width:1180px){
  .sqyd-hd--member .sqyd-hd__main-inner{
    grid-template-columns:auto auto minmax(180px,1fr) auto!important;
    gap:14px!important;
  }
  .sqyd-hd--member .sqyd-hd__member-search{max-width:360px!important;}
  .sqyd-hd--member .sqyd-hd__quick-btn{min-width:72px!important;padding:0 12px!important;}
  .sqyd-hd--member .sqyd-hd__member-chip span{display:none!important;}
}

@media (max-width:1040px){
  .sqyd-hd--member .sqyd-hd__member-search{display:none!important;}
  .sqyd-hd--member .sqyd-hd__main-inner{
    grid-template-columns:auto auto 1fr auto!important;
    height:60px!important;
  }
  .sqyd-hd--member .sqyd-hd__member-actions{justify-self:end!important;}
  .sqyd-hd--member .sqyd-hd__browse{font-size:12px!important;}
}

@media (max-width:767px){
  .sqyd-hd{--gutter:18px!important;}
  .sqyd-hd--member .sqyd-hd__top{display:none!important;}
  .sqyd-hd--member .sqyd-hd__main{top:0!important;position:sticky!important;}
  .admin-bar .sqyd-hd--member .sqyd-hd__main{top:46px!important;}
  .sqyd-hd--member .sqyd-hd__main-inner{
    height:62px!important;
    padding:0 16px!important;
    display:grid!important;
    grid-template-columns:auto 1fr auto auto!important;
    gap:10px!important;
    align-items:center!important;
  }
  .sqyd-hd--member .sqyd-hd__logo{grid-column:1!important;min-width:0!important;}
  .sqyd-hd--member .sqyd-hd__logo img{height:30px!important;max-width:124px!important;}
  .sqyd-hd--member .sqyd-hd__browse,
  .sqyd-hd--member .sqyd-hd__member-search,
  .sqyd-hd--member .sqyd-hd__quick{display:none!important;}
  .sqyd-hd--member .sqyd-hd__member-actions{
    display:flex!important;
    grid-column:3!important;
    justify-self:end!important;
    align-items:center!important;
    gap:8px!important;
    margin:0!important;
  }
  .sqyd-hd--member .sqyd-hd__icon{
    display:flex!important;
    width:38px!important;
    height:38px!important;
    flex:0 0 38px!important;
    background:var(--paper)!important;
  }
  .sqyd-hd--member .sqyd-hd__member-chip{
    display:flex!important;
    border-left:0!important;
    padding-left:0!important;
    gap:0!important;
  }
  .sqyd-hd--member .sqyd-hd__member-chip b{
    width:38px!important;
    height:38px!important;
    flex:0 0 38px!important;
  }
  .sqyd-hd--member .sqyd-hd__member-chip span{display:none!important;}
  .sqyd-hd--member .sqyd-hd__burger{
    display:inline-flex!important;
    grid-column:4!important;
    width:42px!important;
    height:42px!important;
    margin:0!important;
    border-radius:999px!important;
    background:var(--paper)!important;
  }
  .sqyd-hd--member .sqyd-hd__member-strip{display:block!important;}
  .sqyd-hd--member .sqyd-hd__member-strip-inner{
    padding:9px 16px!important;
    display:grid!important;
    grid-template-columns:1fr auto!important;
    gap:6px 12px!important;
    align-items:center!important;
    overflow:hidden!important;
    white-space:normal!important;
    font-size:11.5px!important;
    line-height:1.25!important;
  }
  .sqyd-hd--member .sqyd-hd__member-strip-inner span:first-child{grid-column:1!important;}
  .sqyd-hd--member .sqyd-hd__member-strip-inner span:nth-child(2){grid-column:1!important;color:rgba(244,240,232,.70)!important;}
  .sqyd-hd--member .sqyd-hd__member-strip-inner span:nth-child(3){display:none!important;}
  .sqyd-hd--member .sqyd-hd__member-strip-inner a:first-of-type{
    grid-column:2!important;
    grid-row:1 / span 2!important;
    align-self:center!important;
    justify-self:end!important;
    padding:8px 10px!important;
    border:1px solid rgba(201,160,99,.45)!important;
    color:var(--gold-2)!important;
    font:600 10px/1 var(--sans)!important;
    letter-spacing:.08em!important;
    text-transform:uppercase!important;
    text-decoration:none!important;
    white-space:nowrap!important;
  }
  .sqyd-hd--member .sqyd-hd__member-strip-inner a:last-of-type{display:none!important;}
  .sqyd-hd--member .sqyd-hd__drawer{
    left:0!important;
    right:auto!important;
    width:100vw!important;
    max-width:100vw!important;
    background:var(--ivory)!important;
    border-left:0!important;
    transform:translateX(100%)!important;
  }
  .sqyd-hd--member.is-menu-open .sqyd-hd__drawer{transform:translateX(0)!important;}
  .sqyd-hd--member .sqyd-hd__drawer-head{padding:16px 18px!important;}
  .sqyd-hd--member .sqyd-hd__drawer-brand{padding:20px 18px 14px!important;}
  .sqyd-hd--member .sqyd-hd__drawer-search{padding:12px 18px!important;}
  .sqyd-hd__drawer-nav--member a{padding:15px 18px!important;font-size:15px!important;}
  .sqyd-hd__drawer-foot{padding:18px 18px calc(18px + env(safe-area-inset-bottom))!important;}
}

@media (max-width:380px){
  .sqyd-hd--member .sqyd-hd__logo img{height:28px!important;max-width:112px!important;}
  .sqyd-hd--member .sqyd-hd__icon{display:none!important;}
  .sqyd-hd--member .sqyd-hd__main-inner{grid-template-columns:auto 1fr auto auto!important;gap:8px!important;}
}

/* Compact mobile footer: brand first, then two-column link groups instead of one long stack. */
@media (max-width:700px){
  .sqyd-editable-footer{
    padding:32px 0 20px!important;
    background:#0E0E0D!important;
  }
  .sqyd-editable-footer > .elementor-container{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:18px 18px!important;
    padding-left:20px!important;
    padding-right:20px!important;
    align-items:start!important;
  }
  .sqyd-footer-brand-col{grid-column:1 / -1!important;width:100%!important;}
  .sqyd-footer-col{width:100%!important;min-width:0!important;}
  .sqyd-editable-footer-brand .elementor-heading-title{font-size:25px!important;line-height:1!important;margin:0 0 10px!important;}
  .sqyd-footer-tagline .elementor-widget-container{max-width:32ch!important;font-size:12.5px!important;line-height:1.55!important;}
  .sqyd-footer-contact .elementor-widget-container{font-size:12px!important;line-height:1.6!important;}
  .sqyd-footer-kicker .elementor-widget-container,
  .sqyd-footer-heading .elementor-heading-title{font-size:10px!important;letter-spacing:.18em!important;margin-bottom:8px!important;}
  .elementor-widget-button.sqyd-footer-link{margin:0 0 5px!important;}
  .elementor-widget-button.sqyd-footer-link .elementor-button{
    padding:2px 0!important;
    min-height:0!important;
    font-size:12px!important;
    line-height:1.3!important;
    white-space:normal!important;
    text-align:left!important;
    justify-content:flex-start!important;
  }
  .sqyd-editable-footer-bottom{padding:14px 0 calc(14px + env(safe-area-inset-bottom))!important;background:#0E0E0D!important;}
  .sqyd-editable-footer-bottom > .elementor-container{padding-left:20px!important;padding-right:20px!important;gap:6px!important;}
  .sqyd-editable-footer-bottom .elementor-widget-container{font-size:11px!important;line-height:1.4!important;text-align:left!important;}
}

@media (max-width:430px){
  .sqyd-editable-footer > .elementor-container{grid-template-columns:1fr 1fr!important;gap:16px 14px!important;}
  .sqyd-footer-brand-col{grid-column:1 / -1!important;}
  .sqyd-footer-heading .elementor-heading-title{font-size:9.5px!important;}
  .elementor-widget-button.sqyd-footer-link .elementor-button{font-size:11.5px!important;}
}

/* ======================================================================
   Phase 1.3.51 — mobile header simplification + compact member strip/footer
   ====================================================================== */
.sqyd-hd__member-strip-row{display:flex;align-items:center;gap:18px;width:100%;}
.sqyd-hd__member-strip-details{display:none;}
.sqyd-hd__member-strip-details summary{cursor:pointer;list-style:none;}
.sqyd-hd__member-strip-details summary::-webkit-details-marker{display:none;}

.sqyd-hd--member.sqyd-hd--dashboard-context .sqyd-hd__browse,
.sqyd-hd--member.sqyd-hd--dashboard-context .sqyd-hd__member-search,
.sqyd-hd--member.sqyd-hd--dashboard-context .sqyd-hd__quick,
.sqyd-hd--member.sqyd-hd--dashboard-context .sqyd-hd__member-chip{display:none!important;}
.sqyd-hd--member.sqyd-hd--dashboard-context .sqyd-hd__main-inner{display:flex!important;align-items:center!important;justify-content:space-between!important;min-height:58px!important;height:58px!important;}
.sqyd-hd--member.sqyd-hd--dashboard-context .sqyd-hd__member-actions{margin-left:auto!important;}

@media (max-width:767px){
  .sqyd-hd--member .sqyd-hd__main{position:sticky!important;top:0!important;border-bottom:1px solid var(--line)!important;background:rgba(250,247,241,.98)!important;}
  .admin-bar .sqyd-hd--member .sqyd-hd__main{top:46px!important;}
  .sqyd-hd--member .sqyd-hd__main-inner{
    height:58px!important;min-height:58px!important;padding:0 16px!important;
    display:grid!important;grid-template-columns:auto 1fr auto auto!important;gap:8px!important;align-items:center!important;
  }
  .sqyd-hd--member .sqyd-hd__logo{grid-column:1!important;min-width:0!important;max-width:132px!important;overflow:hidden!important;}
  .sqyd-hd--member .sqyd-hd__logo img{height:28px!important;max-width:124px!important;width:auto!important;object-fit:contain!important;}
  .sqyd-hd--member .sqyd-hd__browse,
  .sqyd-hd--member .sqyd-hd__member-search,
  .sqyd-hd--member .sqyd-hd__quick,
  .sqyd-hd--member .sqyd-hd__member-chip{display:none!important;}
  .sqyd-hd--member .sqyd-hd__member-actions{grid-column:3!important;margin:0!important;justify-self:end!important;display:flex!important;align-items:center!important;gap:2px!important;}
  .sqyd-hd--member .sqyd-hd__icon{width:34px!important;height:34px!important;flex:0 0 34px!important;border:0!important;background:transparent!important;color:var(--ink)!important;}
  .sqyd-hd--member .sqyd-hd__icon .sqyd-hd__bolt{font-size:16px!important;line-height:1!important;position:static!important;width:auto!important;height:auto!important;background:transparent!important;}
  .sqyd-hd--member .sqyd-hd__notif-dot{top:6px!important;right:7px!important;}
  .sqyd-hd--member .sqyd-hd__burger{
    display:inline-flex!important;grid-column:4!important;width:34px!important;height:34px!important;flex:0 0 34px!important;margin:0!important;
    border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;padding:0!important;
  }
  .sqyd-hd--member .sqyd-hd__burger:hover{background:transparent!important;}
  .sqyd-hd--member .sqyd-hd__burger span,
  .sqyd-hd--member .sqyd-hd__burger span::before,
  .sqyd-hd--member .sqyd-hd__burger span::after{width:20px!important;height:1.5px!important;background:var(--ink)!important;}
  .sqyd-hd--member.is-menu-open .sqyd-hd__burger span{background:transparent!important;}
  .sqyd-hd--member .sqyd-hd__member-strip{display:block!important;background:var(--ink)!important;border-bottom:1px solid var(--line-ink)!important;}
  .sqyd-hd--member .sqyd-hd__member-strip-inner{display:block!important;padding:0!important;overflow:visible!important;white-space:normal!important;}
  .sqyd-hd__member-strip-row{display:none!important;}
  .sqyd-hd__member-strip-details{display:block!important;width:100%!important;}
  .sqyd-hd__member-strip-details summary{
    display:grid!important;grid-template-columns:auto 1fr auto!important;gap:10px!important;align-items:center!important;
    padding:10px 16px!important;color:rgba(244,240,232,.76)!important;font-size:11px!important;line-height:1.25!important;
  }
  .sqyd-hd__member-strip-details summary::after{content:'▾';font-size:13px;color:var(--gold-2);line-height:1;transition:transform .2s;}
  .sqyd-hd__member-strip-details[open] summary::after{transform:rotate(180deg);}
  .sqyd-hd__member-strip-details summary strong{font:700 9.5px/1 var(--sans)!important;letter-spacing:.18em!important;text-transform:uppercase!important;color:var(--gold-2)!important;white-space:nowrap!important;}
  .sqyd-hd__member-strip-details summary span{min-width:0!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;}
  .sqyd-hd__member-strip-menu{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important;padding:0 16px 12px!important;}
  .sqyd-hd__member-strip-menu a{display:flex!important;align-items:center!important;justify-content:center!important;padding:9px 10px!important;border:1px solid rgba(201,160,99,.38)!important;color:var(--cream)!important;font:600 10px/1 var(--sans)!important;letter-spacing:.08em!important;text-transform:uppercase!important;text-decoration:none!important;}
  .sqyd-hd--member .sqyd-hd__drawer{width:100vw!important;max-width:100vw!important;right:0!important;left:auto!important;border-left:0!important;}
  .sqyd-hd--member .sqyd-hd__drawer-brand img{height:32px!important;width:auto!important;max-width:136px!important;}
}

@media (max-width:380px){
  .sqyd-hd--member .sqyd-hd__logo img{height:26px!important;max-width:112px!important;}
  .sqyd-hd--member .sqyd-hd__icon{width:30px!important;height:30px!important;flex-basis:30px!important;}
  .sqyd-hd--member .sqyd-hd__burger{width:30px!important;height:30px!important;flex-basis:30px!important;}
}

/* Mobile compact footer. When the refreshed footer contains the compact mobile
   section, hide the long desktop footer on phones. */
.sqyd-mobile-footer-compact{display:none!important;}
@media (max-width:700px){
  .sqyd-mobile-footer-compact{display:block!important;background:#0E0E0D!important;color:#F4F0E8!important;padding:28px 20px calc(22px + env(safe-area-inset-bottom))!important;}
  .sqyd-mobile-footer-compact ~ .sqyd-editable-footer,
  .sqyd-mobile-footer-compact ~ .sqyd-editable-footer-bottom{display:none!important;}
  .sqyd-mobile-footer-compact > .elementor-container{display:block!important;padding:0!important;}
  .sqyd-mobile-footer-col{width:100%!important;}
  .sqyd-mobile-footer-brand .elementor-heading-title{font:400 25px/1 var(--serif)!important;color:#F4F0E8!important;margin:0 0 10px!important;}
  .sqyd-mobile-footer-brand em{color:#C9A063!important;}
  .sqyd-mobile-footer-tagline .elementor-widget-container{font-size:12.5px!important;line-height:1.55!important;color:rgba(244,240,232,.68)!important;max-width:32ch!important;margin-bottom:14px!important;}
  .sqyd-mobile-footer-contact .elementor-widget-container{font-size:12px!important;line-height:1.55!important;color:rgba(244,240,232,.78)!important;margin-bottom:16px!important;}
  .sqyd-mobile-footer-contact strong{font-size:9px!important;letter-spacing:.18em!important;text-transform:uppercase!important;color:#C9A063!important;font-weight:600!important;display:block!important;margin-bottom:4px!important;}
  .sqyd-mobile-footer-links{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:1px!important;border:1px solid #2A2A22!important;margin-top:10px!important;}
  .sqyd-mobile-footer-links a{display:flex!important;align-items:center!important;justify-content:center!important;min-height:42px!important;padding:8px!important;border-right:1px solid #2A2A22!important;border-bottom:1px solid #2A2A22!important;color:#F4F0E8!important;font-size:11px!important;letter-spacing:.08em!important;text-transform:uppercase!important;}
  .sqyd-mobile-footer-links a:nth-child(3n){border-right:0!important;}
  .sqyd-mobile-footer-links a:nth-last-child(-n+3){border-bottom:0!important;}
  .sqyd-mobile-footer-copy{margin:14px 0 0!important;font-size:10.5px!important;color:rgba(244,240,232,.48)!important;}
  /* Existing footer fallback when the compact section has not yet been refreshed. */
  .sqyd-editable-footer:not(.sqyd-mobile-footer-compact){padding-top:28px!important;padding-bottom:18px!important;}
  .sqyd-editable-footer:not(.sqyd-mobile-footer-compact) .sqyd-footer-col:nth-of-type(n+4){display:none!important;}
  .sqyd-editable-footer:not(.sqyd-mobile-footer-compact) .elementor-widget-button.sqyd-footer-link:nth-of-type(n+4){display:none!important;}
}

/* ===================================================================
   Phase 1.3.52 — Mobile footer hardening
   Keeps the footer short even if the compact mobile footer template has not
   been regenerated yet.
   =================================================================== */
@media (max-width: 767px) {
  body, .sqyd-elementor-site-footer, footer { overflow-x: hidden !important; }

  .sqyd-mobile-footer-compact {
    display: block !important;
    padding: 24px 18px calc(18px + env(safe-area-inset-bottom)) !important;
  }
  .sqyd-mobile-footer-compact ~ .sqyd-editable-footer,
  .sqyd-mobile-footer-compact ~ .sqyd-editable-footer-bottom {
    display: none !important;
  }
  .sqyd-mobile-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sqyd-mobile-footer-links a {
    min-height: 40px !important;
    font-size: 10.5px !important;
  }
  .sqyd-mobile-footer-links a:nth-child(3n) { border-right: 1px solid #2A2A22 !important; }
  .sqyd-mobile-footer-links a:nth-child(2n) { border-right: 0 !important; }
  .sqyd-mobile-footer-links a:nth-last-child(-n+3) { border-bottom: 1px solid #2A2A22 !important; }
  .sqyd-mobile-footer-links a:nth-last-child(-n+2) { border-bottom: 0 !important; }

  /* Fallback for existing long Elementor footer if the site owner has not hit
     Refresh Header & Footer Only after this patch. */
  .sqyd-elementor-site-footer .sqyd-editable-footer {
    padding: 26px 18px 18px !important;
    background: #0E0E0D !important;
  }
  .sqyd-elementor-site-footer .sqyd-editable-footer > .elementor-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 14px !important;
    padding: 0 !important;
  }
  .sqyd-elementor-site-footer .sqyd-footer-brand-col {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
  .sqyd-elementor-site-footer .sqyd-footer-col {
    width: 100% !important;
    min-width: 0 !important;
  }
  .sqyd-elementor-site-footer .sqyd-footer-col:nth-of-type(n+4) {
    display: none !important;
  }
  .sqyd-elementor-site-footer .sqyd-editable-footer-brand .elementor-heading-title {
    font-size: 25px !important;
    line-height: 1 !important;
    margin: 0 0 8px !important;
  }
  .sqyd-elementor-site-footer .sqyd-footer-tagline .elementor-widget-container,
  .sqyd-elementor-site-footer .sqyd-footer-contact .elementor-widget-container {
    font-size: 12px !important;
    line-height: 1.55 !important;
    margin-bottom: 10px !important;
  }
  .sqyd-elementor-site-footer .sqyd-footer-heading .elementor-heading-title,
  .sqyd-elementor-site-footer .sqyd-footer-kicker .elementor-heading-title {
    font-size: 9.5px !important;
    letter-spacing: .18em !important;
    margin: 0 0 8px !important;
  }
  .sqyd-elementor-site-footer .elementor-widget-button.sqyd-footer-link {
    margin: 0 0 4px !important;
  }
  .sqyd-elementor-site-footer .elementor-widget-button.sqyd-footer-link:nth-of-type(n+5) {
    display: none !important;
  }
  .sqyd-elementor-site-footer .elementor-widget-button.sqyd-footer-link .elementor-button {
    font-size: 11px !important;
    line-height: 1.35 !important;
    padding: 0 !important;
  }
  .sqyd-elementor-site-footer .sqyd-editable-footer-bottom {
    padding: 12px 18px calc(14px + env(safe-area-inset-bottom)) !important;
  }
  .sqyd-elementor-site-footer .sqyd-editable-footer-bottom > .elementor-container {
    padding: 0 !important;
  }
}


/* ===================================================================
   Phase 1.3.53 — duplicate Welcome Back strip guard
   The member desk Elementor header contains its own member strip. Older PHP
   fallback markup used .sqyd-member-strip. Hide that legacy strip whenever it
   appears after the Elementor header, preventing two stacked Welcome Back bars
   on public pages after login.
   =================================================================== */
.sqyd-hd ~ .sqyd-member-strip,
.sqyd-hd + .sqyd-member-strip{
  display:none!important;
}


/* ===================================================================
   Phase 1.3.55 — iOS mobile drawer stacking hardening
   Fix: Mobile hamburger drawer was rendering behind the homepage hero/banner
   on iOS Safari because the Elementor/home hero created a competing stacking
   context. The drawer/backdrop now act as a viewport-level overlay and are
   also supported when JS portals them directly under <body>.
   =================================================================== */
.sqyd-hd,
.sqyd-elementor-site-header,
.sqyd-elementor-site-header.elementor-section,
.sqyd-theme-header-fallback,
.site-header,
.main-header,
header.sqyd-hd{
  position:relative!important;
  z-index:2147483000!important;
  isolation:isolate!important;
}

.sqyd-hd__backdrop,
.sqyd-hd__drawer{
  --ink:#0E0E0D;
  --ink-2:#181816;
  --cream:#F4F0E8;
  --ivory:#FAF7F1;
  --paper:#FFFFFF;
  --gold:#A87A3E;
  --gold-2:#C9A063;
  --gold-deep:#6E5024;
  --muted:#6B6A64;
  --line:#E3DCCC;
  --line-ink:#2A2A22;
  --serif:'Fraunces','Times New Roman',serif;
  --sans:'Geist',-apple-system,BlinkMacSystemFont,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,monospace;
  --gutter:clamp(18px,4vw,56px);
  font-family:var(--sans);
}

.sqyd-hd__backdrop{
  position:fixed!important;
  inset:0!important;
  z-index:2147483600!important;
  pointer-events:none!important;
}
.sqyd-hd__backdrop.is-open,
.sqyd-hd.is-menu-open .sqyd-hd__backdrop{
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
}

.sqyd-hd__drawer{
  position:fixed!important;
  top:0!important;
  right:0!important;
  bottom:auto!important;
  left:auto!important;
  z-index:2147483601!important;
  height:100vh!important;
  height:100dvh!important;
  max-height:100vh!important;
  max-height:100dvh!important;
  overflow-y:auto!important;
  -webkit-overflow-scrolling:touch!important;
  will-change:transform!important;
  backface-visibility:hidden!important;
  -webkit-backface-visibility:hidden!important;
  transform:translate3d(100%,0,0)!important;
  pointer-events:none!important;
}
.sqyd-hd__drawer.is-open,
.sqyd-hd.is-menu-open .sqyd-hd__drawer{
  transform:translate3d(0,0,0)!important;
  pointer-events:auto!important;
}

html.sqyd-hd-menu-open,
body.sqyd-hd-menu-open{
  overflow:hidden!important;
  overscroll-behavior:none!important;
  touch-action:none!important;
}
body.sqyd-hd-menu-open .sqyd-hd__backdrop.is-open{
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
}
body.sqyd-hd-menu-open .sqyd-hd__drawer.is-open{
  transform:translate3d(0,0,0)!important;
  pointer-events:auto!important;
}

body.sqyd-hd-menu-open .sqyd-home,
body.sqyd-hd-menu-open .sqyd-home-dossier,
body.sqyd-hd-menu-open .sqyd-home-hero,
body.sqyd-hd-menu-open .sqyd-hero,
body.sqyd-hd-menu-open .sqyd-hero-card,
body.sqyd-hd-menu-open .sqyd-hero-media,
body.sqyd-hd-menu-open .home-hero,
body.sqyd-hd-menu-open .elementor-location-single,
body.sqyd-hd-menu-open .elementor-location-archive{
  z-index:1!important;
}

@media (max-width:767px){
  .sqyd-hd__burger{
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
  }
  .sqyd-hd__burger:hover{background:transparent!important;}
  .sqyd-hd__drawer{
    width:100vw!important;
    max-width:100vw!important;
    border-left:0!important;
    right:0!important;
    left:auto!important;
  }
  .sqyd-hd__drawer-head{
    padding-top:max(16px, env(safe-area-inset-top))!important;
  }
}

@supports (-webkit-touch-callout: none){
  @media (max-width:767px){
    .sqyd-hd__backdrop{z-index:2147483645!important;}
    .sqyd-hd__drawer{z-index:2147483646!important;}
    body.sqyd-hd-menu-open .sqyd-hd,
    body.sqyd-hd-menu-open .sqyd-elementor-site-header,
    body.sqyd-hd-menu-open .sqyd-elementor-site-header.elementor-section{
      z-index:2147483644!important;
      isolation:isolate!important;
    }
  }
}
