/* ============================================================
   NY Headshots — PAGE SHELL (reusable chrome)
   Fixed left sidebar (logo + vertical nav), fullscreen fade slideshow,
   bottom info bar, and the dark side "panel" that holds page content.
   Used by every carbon-copy page. Pair with retouch-ui.css on form pages.
   Load this AFTER any Fluent Forms plugin CSS so the panel/chrome win.
   ============================================================ */
:root{ --green:#79d100; --side:240px; --bar:48px; }
*{box-sizing:border-box;margin:0;padding:0;}
html,body{height:100%;}
body{font-family:"Open Sans",Arial,sans-serif;color:#fff;background:#000;overflow:hidden;}
a{color:inherit;text-decoration:none;}

/* ---------- hero slideshow ---------- */
.hero{position:fixed;inset:0;z-index:0;background:#000;}
.hero .slide{position:absolute;inset:0;background-size:cover;background-position:center top;opacity:0;transition:opacity 1.1s ease-in-out;}
.hero .slide.on{opacity:1;}
.hero .scrim{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(0,0,0,.80) 0%,rgba(0,0,0,.38) 22%,rgba(0,0,0,0) 46%,rgba(0,0,0,.45) 100%);}

/* ---------- sidebar ---------- */
.side{position:fixed;top:0;left:0;width:var(--side);height:100%;z-index:30;display:flex;flex-direction:column;padding:34px 0 70px;}
.logo{padding:0 30px 26px;flex:0 0 auto;}
.logo img{width:150px;height:auto;display:block;}
.nav{display:flex;flex-direction:column;flex:1 1 auto;min-height:0;overflow-y:auto;overscroll-behavior:contain;scrollbar-width:none;-ms-overflow-style:none;}
.nav::-webkit-scrollbar{width:0;height:0;display:none;}
.nav a{font-family:"Magra",Arial,sans-serif;font-size:15px;letter-spacing:2.2px;text-transform:uppercase;color:#BFBFBF;padding:11px 30px;line-height:1.15;white-space:nowrap;transition:color .18s;}
.nav a:hover,.nav a.active{color:var(--green);}
.burger{display:none;}

/* ---------- bottom bar ---------- */
.bar{position:fixed;left:0;right:0;bottom:0;height:var(--bar);z-index:40;display:flex;align-items:center;font-size:12px;color:#cfcfcf;background:rgba(0,0,0,.5);padding:0 26px;}
.copy{display:flex;align-items:center;flex-wrap:nowrap;gap:0 9px;color:#8f8f8f;line-height:1.3;white-space:nowrap;}.copy .seg{white-space:nowrap;}.copy .hl{color:#cfcfcf;font-weight:400;}.copy .sep{color:#8f8f8f;}.copy-break{display:none;}.copy .ico{display:inline-block;width:14px;height:14px;flex:0 0 auto;}.copy .lbl-full{display:none;}.copy .lbl-short{display:inline;}.copy .lbl-call{display:none;}.copy .copy-phone,.copy .copy-email{display:inline-flex;align-items:center;gap:6px;border-radius:999px;padding:4px 13px;font-size:12px;font-weight:600;color:#9a9a9a;line-height:1;background:transparent;border:1px solid rgba(255,255,255,.28);}

/* ---------- inner page panel (dark, hosts page content / forms) ---------- */
.page-panel{position:fixed;top:0;left:var(--side);width:760px;max-width:calc(100vw - var(--side));bottom:var(--bar);z-index:35;display:flex;flex-direction:column;background:#000;box-shadow:0 0 50px rgba(0,0,0,.55);}
.panel-bar{flex:0 0 auto;height:40px;display:flex;align-items:center;justify-content:space-between;background:rgba(74,74,74,.92);color:#fff;padding:0 8px 0 18px;}
.panel-title{font-family:"Open Sans",Arial,sans-serif;font-size:13px;letter-spacing:.5px;text-transform:uppercase;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.panel-close{font-size:24px;line-height:1;color:#fff;opacity:.75;padding:0 10px;}
.panel-close:hover{opacity:1;}
/* small modern glass back button (chevron) overlaying the content */
.panel-x{position:absolute;top:12px;right:14px;z-index:8;width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0;text-decoration:none;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.18);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);box-shadow:0 6px 20px -8px rgba(0,0,0,.7);transition:background .2s,border-color .2s,box-shadow .25s,transform .12s;}
.panel-x::before{content:"";width:9px;height:9px;border-left:2px solid rgba(255,255,255,.82);border-bottom:2px solid rgba(255,255,255,.82);transform:rotate(45deg);margin-left:3px;transition:border-color .2s;}
.panel-x:hover{background:rgba(255,255,255,.12);border-color:var(--green);box-shadow:0 0 0 1px rgba(121,209,0,.4),0 10px 26px -10px rgba(121,209,0,.5);transform:translateY(-1px);}
.panel-x:hover::before{border-color:#fff;}
.panel-x:active{transform:scale(.94);}
.panel-body{flex:1 1 auto;overflow-y:auto;background:#000;color:#fff;}
.panel-body::-webkit-scrollbar{width:8px;}
.panel-body::-webkit-scrollbar-thumb{background:rgba(255,255,255,.18);border-radius:8px;}

/* ---------- page heading (eyebrow + H1) ---------- */
.rt-head{padding:26px 24px 0;}
.rt-head .eyebrow{font-family:"Magra",Arial,sans-serif;font-size:18px;letter-spacing:1px;color:#9a9a9a;}
.rt-head h1{font-family:"Magra",Arial,sans-serif;font-size:30px;font-weight:400;color:#fff;line-height:1.1;margin:4px 0 0;text-transform:none;}

/* ---------- mobile: sidebar collapses to a top bar + hamburger ---------- */
@media(max-width:760px){
  :root{ --side:0px; --bar:42px; }
  .hero{display:none;}
  .side{flex-direction:row;z-index:62;align-items:center;justify-content:space-between;width:100%;height:64px;padding:0 16px;background:#000;}
  .logo{padding:0;position:relative;z-index:2;}.logo img{width:118px;}
  .burger{display:flex;flex-direction:column;gap:5px;width:34px;padding:6px;cursor:pointer;background:none;border:0;position:relative;z-index:2;}
  .burger span{height:2px;background:#fff;display:block;}
  .nav{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1;background:rgba(8,8,8,.96);backdrop-filter:blur(22px);padding:72px 0 16px;display:none;overflow-y:auto;}
  .nav.open{display:flex;}
  .nav a{font-size:16px;letter-spacing:2.5px;padding:13px 22px;}
  .page-panel{left:0;width:100%;max-width:100%;top:64px;}.bar{background:#000;}
  .rt-head h1{font-size:25px;}
  .copy{display:flex;flex-wrap:wrap;gap:4px 10px;font-size:11px;}
  .copy .sep,.copy .copy-site{display:none;}.copy .copy-llc{order:3;}.copy .copy-loc{display:none;}.copy .copy-phone{order:1;}.copy .copy-email{order:2;}.copy .lbl{display:none;}.copy .lbl-call{display:inline;}
}

/* ============================================================
   REUSABLE DESIGN ELEMENT — green glow-line link
   Canonical replacement for ANY plain underlined link across the site.
   Use `.glow-link` (or apply these rules to a link group). Green underline
   fades in on hover (transparent at rest = no layout shift) + soft green glow,
   matching the retouch-form input focus line.
   ============================================================ */
.glow-link{text-decoration:none;border-bottom:1.5px solid transparent;transition:color .2s,border-color .25s,box-shadow .25s;}
.glow-link:hover{border-bottom-color:var(--green);box-shadow:0 3px 8px -3px rgba(121,209,0,.75);}
