/*
Theme Name:  JP Design + Print
Description: Professional large-format print & sign company. Industrial aesthetic with bold condensed type and gold & silver brand colors.
Author:      JP Design + Print
Version:     3.1.4
Text Domain: jpdesign
*/

/* ════════════════════════════════════════
   CSS CUSTOM PROPERTIES
════════════════════════════════════════ */
:root {
  --ink:        #0d0d0d;   /* body base */
  --ink-hero:   #060606;   /* hero bars — distinctly darker, almost pure black */
  --ink2:       #1a1a1a;   /* content sections — clearly lighter than hero */
  --ink3:       #2a2a2a;   /* borders, card surfaces */
  --ink4:       #383838;   /* active/hover surfaces */
  --ink-footer: #030303;   /* footer — deepest tone, feels firmly grounded */
  --gold:       #a78422;
  --gold-dk:    #8a6c1a;
  --gold-lt:    #f9f5e7;
  --gold-mid:   #c9a435;
  --silver:     #919596;
  --silver-lt:  #e8e9ea;
  --bone:       #f4f3f0;
  --bone2:      #eae9e4;
  --bone3:      #d4d2cc;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --text2:      #5a5955;
  /* On dark/ink backgrounds — high-contrast text */
  --text-on-dark:  #f0ede8;        /* near-white warm, for headings + primary copy */
  --text2-on-dark: rgba(240,237,232,.68); /* readable secondary copy on dark */
  --green:      #2a7a3b;
  --nav-h:      68px;
  --max-w:      1260px;
  --radius:     3px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 48px rgba(0,0,0,.16);
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Lato', sans-serif;
  --font-mono:  'Space Mono', monospace;
}
  --font-body:  'Lato', sans-serif;
  --font-mono:  'Space Mono', monospace;
}

/* ════════════════════════════════════════
   RESET + BASE
════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;width:100%}
body{font-family:var(--font-body);color:var(--text);background:var(--ink);-webkit-font-smoothing:antialiased;line-height:1.65;width:100%;margin:0;padding:0;overflow-x:clip}
/* WordPress admin bar offset — keep full bleed */
body.admin-bar .site-nav{top:32px}
@media(max-width:782px){body.admin-bar .site-nav{top:46px}}
h1,h2,h3,h4,h5{font-family:var(--font-head);line-height:1.0;letter-spacing:-.01em}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none;padding:0;margin:0}
button{cursor:pointer;font-family:inherit}

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.container{max-width:var(--max-w);margin:0 auto;padding:0 32px}
.sec{padding:96px 0}
.sec-sm{padding:64px 0}
@media(max-width:768px){.sec{padding:64px 0}.sec-sm{padding:48px 0}}
@media(max-width:480px){.sec{padding:48px 0}}

/* ════════════════════════════════════════
   TYPE SYSTEM
════════════════════════════════════════ */
.eyebrow{
  font-family:var(--font-mono);
  font-size:.68rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold);
  display:flex;align-items:center;gap:12px;
  margin-bottom:1rem;
}
.eyebrow::before{content:'';width:24px;height:2px;background:var(--gold);flex-shrink:0}
.eyebrow.center{justify-content:center}
.eyebrow.center::before{display:none}
.eyebrow.center::after{content:'';width:24px;height:2px;background:var(--gold);flex-shrink:0}

.h-display{
  font-family:var(--font-head);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:-.025em;
  line-height:.92;
  font-size:clamp(3rem,7vw,6.5rem);
}
.h-section{
  font-family:var(--font-head);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:-.02em;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:.96;
}
.h-card{
  font-family:var(--font-head);
  font-weight:700;
  text-transform:uppercase;
  font-size:1.3rem;
}
.body-lg{font-size:1.05rem;line-height:1.80;color:var(--text2)}
.body-sm{font-size:1rem;line-height:1.72;color:var(--text2)}
.mono-label{
  font-family:var(--font-mono);
  font-size:.65rem;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--silver);
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn{
  display:inline-flex;align-items:center;gap:9px;
  font-family:var(--font-head);font-weight:700;
  font-size:.92rem;letter-spacing:.5px;text-transform:uppercase;
  padding:14px 32px;border-radius:var(--radius);border:none;
  transition:all .22s ease;white-space:nowrap;
}
.btn-gold{background:var(--gold);color:var(--white)}
.btn-gold:hover{background:var(--gold-dk);transform:translateY(-2px);box-shadow:0 8px 28px rgba(167,132,34,.38);color:var(--white)}
.btn-ghost{background:transparent;color:var(--white);border:2px solid rgba(255,255,255,.35)}
.btn-ghost:hover{border-color:var(--white);background:rgba(255,255,255,.08);color:var(--white)}
.btn-outline{background:transparent;color:var(--ink);border:2px solid var(--ink)}
.btn-outline:hover{background:var(--ink);color:var(--white)}
.btn-sm{padding:10px 22px;font-size:.80rem}
.btn-lg{padding:17px 44px;font-size:1rem}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.site-nav{
  position:sticky;top:0;z-index:1000;
  background:var(--ink);
  border-bottom:3px solid var(--gold);
  height:var(--nav-h);
  transition:box-shadow .3s;
}
.site-nav.scrolled{box-shadow:0 4px 28px rgba(0,0,0,.5)}
.nav-inner{
  max-width:var(--max-w);margin:0 auto;padding:0 32px;
  height:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
}
/* Logo placeholder */
.nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0;text-decoration:none}
.nav-logo-placeholder{display:flex;align-items:center;gap:10px}
.nlp-box{
  display:flex;align-items:center;
  line-height:1;
}
.nlp-d,.nlp-p{
  font-family:var(--font-head);font-size:2rem;font-weight:800;
  line-height:1;letter-spacing:-.05em;
}
.nlp-d{color:var(--gold)}
.nlp-p{color:var(--silver)}
.nlp-text{display:flex;flex-direction:column;line-height:1}
.nlp-name{
  font-family:var(--font-mono);font-size:.58rem;letter-spacing:3px;
  text-transform:uppercase;color:rgba(240,237,232,.65);white-space:nowrap;
}
.nlp-name span{color:var(--gold)}
.nav-links{display:flex;align-items:center;gap:2px;flex:1;justify-content:flex-end}
.nav-links a{
  font-family:var(--font-head);font-size:1rem;font-weight:600;
  letter-spacing:.6px;text-transform:uppercase;
  color:rgba(255,255,255,.58);padding:8px 13px;border-radius:var(--radius);
  transition:color .2s,background .2s;white-space:nowrap;
}
.nav-links a:hover,.nav-links a.active{color:var(--gold);background:rgba(167,132,34,.12)}
.nav-cta{
  background:var(--gold) !important;color:var(--white) !important;
  padding:9px 20px !important;border-radius:var(--radius);
  font-weight:700 !important;margin-left:8px;flex-shrink:0;
  transition:background .2s,transform .15s;
}
.nav-cta:hover{background:var(--gold-dk) !important;transform:translateY(-1px)}
.nav-hamburger{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;padding:6px;
}
.nav-hamburger span{display:block;width:22px;height:2px;background:var(--white);border-radius:2px;transition:transform .3s,opacity .3s}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-hamburger.open span:nth-child(2){opacity:0}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(max-width:900px){
  .nav-hamburger{display:flex}
  .nav-links{
    /* Hidden state — animates via max-height + opacity */
    display:flex;
    position:absolute;top:var(--nav-h);left:0;right:0;
    background:var(--ink2);border-bottom:3px solid var(--gold);
    padding:0 20px;flex-direction:column;align-items:stretch;gap:0;
    box-shadow:0 8px 32px rgba(0,0,0,.5);
    /* Animation */
    max-height:0;
    overflow:hidden;
    opacity:0;
    pointer-events:none;
    transition:max-height .38s cubic-bezier(.4,0,.2,1),
               opacity .28s ease,
               padding .38s ease;
  }
  .nav-links.open{
    max-height:480px;
    opacity:1;
    pointer-events:all;
    padding:12px 20px 20px;
  }
  .nav-links li{
    opacity:0;
    transform:translateY(-8px);
    transition:opacity .25s ease,transform .25s ease;
  }
  .nav-links.open li{opacity:1;transform:translateY(0)}
  /* Stagger each nav item */
  .nav-links.open li:nth-child(1){transition-delay:.06s}
  .nav-links.open li:nth-child(2){transition-delay:.10s}
  .nav-links.open li:nth-child(3){transition-delay:.14s}
  .nav-links.open li:nth-child(4){transition-delay:.18s}
  .nav-links.open li:nth-child(5){transition-delay:.22s}
  .nav-links.open li:nth-child(6){transition-delay:.26s}
  .nav-links a{padding:13px 14px;font-size:1rem}
  .nav-cta{margin:10px 0 4px;text-align:center;padding:13px !important;display:block}
}

/* ════════════════════════════════════════
   PAGE HERO BAR (inner pages)
════════════════════════════════════════ */
.page-hero{
  background:var(--ink-hero);padding:72px 0 60px;
  position:relative;overflow:hidden;
}
.page-hero::after{
  content:'';position:absolute;right:-60px;top:-80px;
  width:380px;height:380px;border:56px solid rgba(167,132,34,.06);
  border-radius:50%;pointer-events:none;
}
.page-hero-title{color:var(--white);margin-top:.75rem}
.breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-family:var(--font-mono);font-size:.65rem;letter-spacing:2px;
  text-transform:uppercase;color:var(--silver);margin-bottom:1.5rem;
}
.breadcrumb a{color:var(--silver);transition:color .2s}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb .sep{color:var(--ink4)}
.breadcrumb .cur{color:var(--gold)}

/* ════════════════════════════════════════
   HOME HERO
════════════════════════════════════════ */
.home-hero{
  background:var(--ink-hero);
  min-height:calc(100vh - var(--nav-h));
  display:flex;align-items:center;
  position:relative;overflow:hidden;
}
.hero-grid-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(167,132,34,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(167,132,34,.04) 1px,transparent 1px);
  background-size:52px 52px;
  pointer-events:none;
}
.hero-bg-photo{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  opacity:0;transition:opacity 1.2s ease;
}
.hero-bg-photo.loaded{opacity:1}
.hero-vignette{
  position:absolute;inset:0;
  background:linear-gradient(110deg,rgba(13,13,13,.82) 30%,rgba(13,13,13,.50) 100%);
}
.no-hero-img .hero-vignette{
  background:linear-gradient(110deg,rgba(13,13,13,.94) 40%,rgba(13,13,13,.60) 100%);
}
.hero-inner{position:relative;z-index:2;padding:88px 0}
.hero-rule{width:56px;height:4px;background:var(--gold);margin-bottom:2rem;border-radius:2px}
.hero-title{
  font-family:var(--font-head);font-weight:800;text-transform:uppercase;
  letter-spacing:-.025em;line-height:.92;
  font-size:clamp(3.2rem,8vw,7rem);
  color:var(--white);margin-bottom:1.75rem;
}
.hero-title em{font-style:normal;color:var(--gold);display:block}
.hero-ctas{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.hero-divider{
  height:1px;background:rgba(255,255,255,.07);
  margin:52px 0 44px;
}
.hero-stats{display:flex;gap:56px;flex-wrap:wrap}
.stat-num{
  font-family:var(--font-head);font-size:2.6rem;font-weight:800;
  color:var(--gold);line-height:1;
}
.stat-lbl{
  font-family:var(--font-mono);font-size:.65rem;letter-spacing:2px;
  text-transform:uppercase;color:var(--silver);margin-top:4px;
}
@media(max-width:600px){
  .hero-ctas{
    flex-direction:column;
    align-items:stretch;      /* buttons full-width on mobile */
    gap:10px;
  }
  .hero-ctas .btn{
    justify-content:center;
    padding:11px 20px;        /* tighter padding on mobile */
    font-size:.90rem;
    margin-left:0 !important; /* override the phone btn margin-left:auto */
  }
  .hero-stats{gap:24px}
}

/* ════════════════════════════════════════
   SERVICES CARDS (home + products page)
════════════════════════════════════════ */
.services-band{background:var(--ink2);border-bottom:1px solid var(--ink3)}
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  border-left:1px solid var(--ink3);
}
.svc-card{
  padding:44px 36px;border-right:1px solid var(--ink3);
  border-top:1px solid var(--ink3);
  transition:background .25s;position:relative;
}
.svc-card:hover{background:var(--ink3)}
.svc-icon{font-size:1.6rem;color:var(--gold);margin-bottom:1.1rem}
.svc-title{color:var(--white);font-size:1.35rem;margin-bottom:.65rem}
.svc-list{display:flex;flex-direction:column;gap:5px}
.svc-list li::before{content:'';width:12px;height:1px;background:var(--gold);flex-shrink:0}
@media(max-width:820px){.services-grid{grid-template-columns:1fr}}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-layout{
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;align-items:center;
}
.about-img-wrap{position:relative}
.about-img-wrap img{
  width:100%;border-radius:var(--radius-lg);
  aspect-ratio:4/3;object-fit:cover;
}
.about-badge{
  position:absolute;bottom:-20px;right:-20px;
  background:var(--gold);color:var(--white);
  padding:18px 22px;border-radius:var(--radius-md);
  text-align:center;box-shadow:var(--shadow-lg);
}
.about-badge strong{
  font-family:var(--font-head);font-size:2.2rem;
  font-weight:800;display:block;line-height:1;
}
.about-badge span{
  font-family:var(--font-mono);font-size:.60rem;
  letter-spacing:2px;text-transform:uppercase;opacity:.88;
}
.about-values{
  display:grid;grid-template-columns:1fr 1fr;
  gap:10px;margin:1.5rem 0;
}
.about-value{
  background:var(--bone);border-radius:var(--radius);
  padding:14px 16px;display:flex;align-items:center;gap:10px;
  border-left:3px solid var(--gold);
}
.about-value i{color:var(--gold);font-size:1rem}
.about-value span{
  font-family:var(--font-head);font-size:.88rem;
  font-weight:700;text-transform:uppercase;letter-spacing:.3px;color:var(--ink);
}
@media(max-width:860px){
  .about-layout{grid-template-columns:1fr;gap:48px}
  .about-badge{bottom:12px;right:12px}
}
@media(max-width:480px){.about-values{grid-template-columns:1fr}}

/* ════════════════════════════════════════
   PRODUCT PREVIEWS (home)
════════════════════════════════════════ */
.products-preview{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:var(--ink3);
  border:1px solid var(--ink3);border-radius:var(--radius-lg);overflow:hidden;
}
.prod-preview-card{
  background:var(--ink2);
  border:1px solid var(--ink3);
  padding:28px 22px;
  transition:background .22s, border-color .22s, transform .22s;
  display:block;text-decoration:none;
  border-radius:var(--radius-lg);
}
.prod-preview-card:hover{
  background:var(--ink3);
  border-color:var(--gold);
  transform:translateY(-2px);
}
.prod-preview-card:hover .prod-arrow{color:var(--gold)}
/* Bootstrap icon circle on product preview cards */
.prod-preview-icon{
  width:44px;height:44px;
  border-radius:50%;
  background:rgba(167,132,34,.15);
  border:1px solid rgba(167,132,34,.25);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.9rem;
  font-size:1.1rem;
  color:var(--gold);
}
/* prod-icon used inside full product sections */
.prod-icon{
  width:52px;height:52px;
  border-radius:50%;
  background:rgba(167,132,34,.12);
  border:1px solid rgba(167,132,34,.22);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.75rem;
  font-size:1.25rem;
  color:var(--gold);
}
.prod-name{
  font-family:var(--font-head);font-size:1rem;font-weight:700;
  text-transform:uppercase;color:var(--white);margin-bottom:.45rem;
}
.prod-blurb{font-size:.80rem;color:rgba(240,237,232,.60);line-height:1.50;margin-bottom:.9rem}
.prod-arrow{
  font-family:var(--font-mono);font-size:.80rem;
  letter-spacing:1.5px;
  color:rgba(240,237,232,.40);transition:color .2s;
}
@media(max-width:900px){.products-preview{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.products-preview{grid-template-columns:1fr}}

/* Home work preview — 3-column grid */
.home-work-grid{
  grid-template-columns:repeat(3,1fr) !important;
}
@media(max-width:900px){.home-work-grid{grid-template-columns:repeat(2,1fr) !important}}
@media(max-width:540px){.home-work-grid{grid-template-columns:1fr !important}}

/* ════════════════════════════════════════
   PRODUCTS PAGE LAYOUT — VERTICAL SIDEBAR
════════════════════════════════════════ */

/* Overall two-column layout */
/* Full-bleed content zone background */
.prod-bg{
  background:var(--ink2);
}

.prod-layout{
  display:grid;
  grid-template-columns:240px 1fr;
  align-items:start;
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 32px;
  gap:0;
}

/* ── Sidebar ── */
.prod-sidebar{
  position:sticky;
  top:var(--nav-h);
  align-self:start;
  max-height:calc(100vh - var(--nav-h));
  overflow-y:auto;
  overflow-x:hidden;
  scrollbar-width:thin;
  scrollbar-color:var(--ink3) transparent;
  padding:0 0 48px;           /* top padding removed — label handles it */
  border-right:1px solid var(--ink3);
  background:var(--ink2);
  z-index:10;
}
.prod-sidebar::-webkit-scrollbar{width:4px}
.prod-sidebar::-webkit-scrollbar-thumb{background:var(--ink4);border-radius:2px}

/* Sticky label pinned at top of sidebar scroll area */
.psb-label{
  position:sticky;
  top:0;
  z-index:2;
  background:var(--ink2);    /* matches sidebar bg so links slide under it cleanly */
  font-family:var(--font-mono);
  font-size:.58rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--silver);
  padding:20px 12px 12px;
  border-bottom:1px solid var(--ink3);
  margin-bottom:8px;
}

.prod-sidebar-inner{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding-right:16px;
}

.psb-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:var(--radius);
  text-decoration:none;
  font-family:var(--font-head);
  font-size:.82rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.3px;
  color:rgba(240,237,232,.50);
  transition:background .18s, color .18s;
  position:relative;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.psb-link:hover{
  background:var(--ink3);
  color:var(--text-on-dark);
}
.psb-link.active{
  background:var(--gold);
  color:var(--white);
}
.psb-icon{
  width:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.95rem;
  color:rgba(167,132,34,.7);
  flex-shrink:0;
  transition:color .18s;
}
.psb-link:hover .psb-icon{color:var(--gold)}
.psb-link.active .psb-icon{color:var(--white)}
.psb-text{flex:1;overflow:hidden;text-overflow:ellipsis}
.psb-indicator{display:none}

/* ── Content area ── */
.prod-content{
  padding:0 0 0 48px;
  min-width:0;
}

/* ── Mobile nav ── */
.prod-mobile-nav{
  display:none; /* hidden on desktop */
  position:sticky;
  top:var(--nav-h);
  z-index:95;
  background:var(--white);
  border-bottom:2px solid var(--bone3);
  padding:0;
}
.pmn-toggle{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  padding:13px 20px;
  background:none;
  border:none;
  cursor:pointer;
  font-family:var(--font-head);
  font-size:.88rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--ink);
  text-align:left;
}
.pmn-icon{
  width:28px;height:28px;
  background:rgba(167,132,34,.12);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:.85rem;flex-shrink:0;
}
.pmn-label{flex:1}
.pmn-caret{
  font-size:.8rem;color:var(--silver);
  transition:transform .25s ease;
}
.pmn-caret.open{transform:rotate(180deg)}

.pmn-drawer{
  position:absolute;
  left:0;right:0;
  background:var(--white);
  border-bottom:2px solid var(--bone3);
  box-shadow:0 8px 32px rgba(0,0,0,.12);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background-color:var(--bone3);
  z-index:200;
  max-height:65vh;
  overflow-y:auto;
}
.pmn-drawer[hidden]{display:none}
.pmn-link{
  display:flex;
  align-items:center;
  gap:9px;
  padding:13px 16px;
  background:var(--white);
  text-decoration:none;
  font-family:var(--font-head);
  font-size:.76rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.3px;
  color:var(--text2);
  transition:background .15s,color .15s;
}
.pmn-link:hover,.pmn-link.active{
  background:var(--gold-lt);
  color:var(--gold);
}
.pmn-link i{font-size:.9rem;color:var(--gold);flex-shrink:0}

/* ── Responsive ── */
@media(max-width:1024px){
  .prod-layout{grid-template-columns:200px 1fr}
  .prod-content{padding-left:32px}
}
@media(max-width:768px){
  /* Switch to single-column, hide sidebar, show mobile nav */
  .prod-layout{
    grid-template-columns:1fr;
    padding:0;
  }
  .prod-sidebar{display:none}
  .prod-mobile-nav{display:block}
  .prod-content{padding:0}
}


/* ════════════════════════════════════════
   PRODUCT SECTIONS (full page)
════════════════════════════════════════ */
.prod-section{
  padding:72px 0;
  border-bottom:1px solid var(--ink3);
  scroll-margin-top:var(--nav-h);
}
.prod-section:last-child{border-bottom:none}
@media(max-width:768px){
  .prod-section{
    padding:52px 24px;
    scroll-margin-top:calc(var(--nav-h) + 54px); /* account for mobile sticky dropdown */
  }
}
.prod-section-head{
  display:grid;grid-template-columns:1fr 1.5fr;
  gap:64px;align-items:start;margin-bottom:52px;
}
.prod-num{
  font-family:var(--font-mono);font-size:.62rem;letter-spacing:3px;
  text-transform:uppercase;color:var(--silver);margin-bottom:.65rem;
}
.prod-title{
  font-family:var(--font-head);font-weight:800;
  text-transform:uppercase;letter-spacing:-.02em;
  font-size:clamp(1.9rem,3.5vw,3rem);
  color:var(--white);
  margin-bottom:.9rem;line-height:.96;
}
.prod-body{
  font-size:1rem;
  color:rgba(240,237,232,.72);
  line-height:1.78;
}
.prod-features{display:flex;flex-direction:column;gap:7px;margin-top:1.1rem}
.prod-features li{
  display:flex;align-items:flex-start;gap:9px;
  font-size:1rem;
  color:rgba(240,237,232,.72);
}
.prod-features li i{color:var(--gold);font-size:.80rem;margin-top:4px;flex-shrink:0}

/* 3×3 gallery */
.gallery-3x3{
  display:grid;grid-template-columns:repeat(3,1fr);gap:6px;
}
.g-cell{
  aspect-ratio:4/3;overflow:hidden;border-radius:var(--radius);
  background:var(--bone2);cursor:pointer;position:relative;
}
.g-cell img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease,opacity .3s}
.g-cell:hover img{transform:scale(1.07);opacity:.82}
.g-overlay{
  position:absolute;inset:0;
  background:rgba(13,13,13,0);
  display:flex;align-items:center;justify-content:center;
  transition:background .3s;
}
.g-cell:hover .g-overlay{background:rgba(13,13,13,.32)}
.g-overlay i{
  color:var(--white);font-size:1.4rem;
  opacity:0;transform:scale(.7);
  transition:opacity .3s,transform .3s;
}
.g-cell:hover .g-overlay i{opacity:1;transform:scale(1)}
.g-placeholder{
  width:100%;height:100%;
  background:linear-gradient(135deg,var(--bone2) 0%,var(--bone) 100%);
  display:flex;align-items:center;justify-content:center;
  font-size:1.8rem;color:var(--bone3);
}
.g-placeholder i{font-size:1.8rem;color:var(--bone3)}

@media(max-width:860px){
  .prod-section-head{grid-template-columns:1fr;gap:28px}
  .gallery-3x3{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){.gallery-3x3{grid-template-columns:1fr}}

/* Services strip inside products page */
.svc-inline-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:48px;
}
.svc-inline{
  background:var(--ink);border-radius:var(--radius-lg);
  padding:28px 26px;color:var(--white);
}
.svc-inline-icon{font-size:1.4rem;color:var(--gold);margin-bottom:.9rem}
.svc-inline-title{color:var(--white);font-size:1.15rem;margin-bottom:.55rem}
.svc-inline-list li{
  padding:5px 0;border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;gap:7px;
}
.svc-inline-list li:last-child{border-bottom:none}
.svc-inline-list li::before{content:'—';color:var(--gold);font-size:.60rem}
@media(max-width:820px){.svc-inline-grid{grid-template-columns:1fr}}

/* ════════════════════════════════════════
   CAPABILITIES / PRODUCTION SUITE
════════════════════════════════════════ */
.cap-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
/* Last card centres itself if odd count */
.cap-card:last-child:nth-child(odd){
  grid-column:1/-1;
  max-width:640px;
  margin:0 auto;
  width:100%;
}
.cap-card{
  background:var(--ink2);
  border:1px solid var(--ink3);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:box-shadow .3s, border-color .3s, transform .25s;
}
.cap-card:hover{
  box-shadow:0 12px 48px rgba(0,0,0,.5);
  border-color:var(--gold);
  transform:translateY(-3px);
}

/* Image wrapper — white bg so product shots on white don't clash */
.cap-img-wrap{
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  aspect-ratio:16/9;
}
.cap-img{
  width:100%;height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
  padding:16px;
}
.cap-img-ph{
  width:100%;aspect-ratio:16/9;
  background:var(--ink3);
  display:flex;align-items:center;justify-content:center;
  font-size:3rem;color:var(--ink4);
}

.cap-body{padding:24px 26px 28px}
.cap-type{
  font-family:var(--font-mono);font-size:.60rem;letter-spacing:3px;
  text-transform:uppercase;color:var(--gold);margin-bottom:.35rem;
}
.cap-title{
  font-size:1.25rem;font-weight:700;
  color:var(--white);margin-bottom:.65rem;line-height:1.2;
}
.cap-desc{
  font-size:1rem;color:rgba(240,237,232,.72);
  line-height:1.72;margin-bottom:1rem;
}

/* Media type tags */
.cap-tags{
  display:flex;flex-wrap:wrap;gap:5px;
  margin-bottom:1.1rem;
}
.cap-tag{
  font-family:var(--font-mono);
  font-size:.58rem;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:rgba(240,237,232,.65);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:3px;
  padding:3px 8px;
  white-space:nowrap;
}

/* Specs table — dark variant */
.cap-specs{
  background:rgba(0,0,0,.25);
  border:1px solid var(--ink3);
  border-radius:var(--radius);
  padding:12px 16px;
}
.spec-row{
  display:flex;justify-content:space-between;align-items:baseline;gap:10px;
  padding:5px 0;border-bottom:1px solid rgba(255,255,255,.06);
}
.spec-row:last-child{border-bottom:none}
.spec-key{
  font-family:var(--font-mono);font-size:.62rem;letter-spacing:1.5px;
  text-transform:uppercase;color:var(--silver);flex-shrink:0;
}
.spec-val{
  font-size:.86rem;font-weight:600;
  color:rgba(240,237,232,.88);text-align:right;
}


@media(max-width:900px){
  .cap-grid{grid-template-columns:1fr}
  .cap-card:last-child:nth-child(odd){max-width:100%;grid-column:auto}
}

.eco-banner{
  background:var(--ink);border:1px solid #2a7a3b;border-radius:var(--radius-lg);
  padding:36px 40px;display:grid;grid-template-columns:auto 1fr;
  gap:28px;align-items:center;margin-bottom:52px;
}
.eco-icon{
  width:60px;height:60px;background:rgba(42,122,59,.15);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.7rem;color:#4caf50;flex-shrink:0;
}
.eco-title{
  font-family:var(--font-head);font-size:1.2rem;font-weight:700;
  text-transform:uppercase;color:var(--white);margin-bottom:.35rem;
}
.eco-body{font-size:.88rem;color:rgba(240,237,232,.72);line-height:1.65}
.eco-body strong{color:#4caf50}

@media(max-width:820px){
  .cap-grid{grid-template-columns:1fr}
  .eco-banner{grid-template-columns:1fr;text-align:center}
  .eco-icon{margin:0 auto}
}

/* ════════════════════════════════════════
   OUR WORK
════════════════════════════════════════ */
.work-filters{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:36px}
.filter-btn{
  font-family:var(--font-head);font-size:.76rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.5px;
  padding:8px 20px;border-radius:50px;
  border:1.5px solid var(--bone3);background:var(--white);color:var(--text2);
  cursor:pointer;transition:all .2s;
}
.filter-btn:hover,.filter-btn.active{background:var(--gold);color:var(--white);border-color:var(--gold)}
.work-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px;
}
.work-card{
  background:var(--white);border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--bone3);transition:box-shadow .3s,transform .3s;cursor:pointer;
}
.work-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.work-img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;background:var(--bone)}
.work-img-ph{
  width:100%;aspect-ratio:4/3;background:var(--bone2);
  display:flex;align-items:center;justify-content:center;font-size:2.5rem;color:var(--bone3);
}
.work-body{padding:18px 20px 22px}
.work-cat{
  font-family:var(--font-mono);font-size:.62rem;letter-spacing:2px;
  text-transform:uppercase;color:var(--gold);margin-bottom:.35rem;
}
.work-title{font-size:.98rem;color:var(--text-on-dark);margin-bottom:.4rem;font-family:var(--font-head);font-weight:700;text-transform:uppercase}
.work-desc{font-size:.82rem;color:var(--text2-on-dark);line-height:1.52}
@media(max-width:860px){.work-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.work-grid{grid-template-columns:1fr}}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-layout{
  display:grid;grid-template-columns:1fr 1.35fr;
  gap:56px;align-items:start;
}
.contact-panel{
  background:var(--ink);border-radius:var(--radius-lg);
  padding:40px 36px;color:var(--white);
}
.contact-panel .eyebrow{color:var(--gold)}
.contact-panel-title{color:var(--white);margin-top:.75rem;margin-bottom:1.5rem;font-size:1.9rem}
.c-detail{
  display:flex;gap:14px;align-items:flex-start;
  margin-bottom:1.35rem;padding-bottom:1.35rem;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.c-detail:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.c-icon{
  width:40px;height:40px;flex-shrink:0;border-radius:var(--radius);
  background:rgba(167,132,34,.14);display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:.95rem;
}
.c-lbl{
  font-family:var(--font-mono);font-size:.62rem;letter-spacing:2px;
  text-transform:uppercase;color:var(--silver);margin-bottom:3px;
}
.c-val{font-size:.93rem;color:rgba(240,237,232,.82);line-height:1.52}
.c-val a{color:var(--gold)}
.hours-grid{
  background:rgba(255,255,255,.04);border-radius:var(--radius);
  padding:14px 16px;margin-top:4px;
}
.hours-row{
  display:flex;justify-content:space-between;
  font-size:.83rem;color:rgba(240,237,232,.60);
  padding:4px 0;border-bottom:1px solid rgba(255,255,255,.04);
}
.hours-row:last-child{border-bottom:none}
.hours-row strong{color:rgba(240,237,232,.82)}
.hours-note{
  font-family:var(--font-mono);font-size:.65rem;letter-spacing:1px;
  text-transform:uppercase;color:var(--gold);
  margin-top:8px;padding-top:8px;border-top:1px solid rgba(255,255,255,.05);
}

.contact-form-wrap{
  background:var(--bone);border-radius:var(--radius-lg);padding:36px;
}
.form-head-title{
  font-family:var(--font-head);font-size:1.45rem;font-weight:700;
  text-transform:uppercase;color:var(--ink);margin-bottom:.35rem;
}
.form-head-sub{font-size:.88rem;color:var(--text2);margin-bottom:1.65rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:13px;margin-bottom:13px}
.form-row.full{grid-template-columns:1fr}
.f-group{display:flex;flex-direction:column;gap:5px}
.f-label{
  font-family:var(--font-mono);font-size:.62rem;letter-spacing:2px;
  text-transform:uppercase;color:var(--text2);
}
.f-control{
  background:var(--white);border:1.5px solid var(--bone3);
  border-radius:var(--radius);color:var(--text);
  padding:11px 15px;font-family:var(--font-body);font-size:.91rem;
  transition:border-color .2s;width:100%;
}
.f-control:focus{outline:none;border-color:var(--gold)}
.f-control::placeholder{color:var(--bone3)}
textarea.f-control{resize:none;min-height:120px}
select.f-control{appearance:none;cursor:pointer}

.map-wrap{
  margin-top:36px;border-radius:var(--radius-lg);
  overflow:hidden;border:2px solid var(--bone3);background:var(--bone);
}
.map-wrap iframe{width:100%;height:320px;border:none;display:block}
.map-bar{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 18px;background:var(--ink);border-top:2px solid var(--gold);
}
.map-addr{
  font-family:var(--font-mono);font-size:.66rem;letter-spacing:1.5px;
  text-transform:uppercase;color:rgba(240,237,232,.70);
}
.map-dir{
  font-family:var(--font-head);font-size:.80rem;font-weight:700;
  text-transform:uppercase;color:var(--gold);
  display:flex;align-items:center;gap:6px;transition:gap .2s;
}
.map-dir:hover{gap:10px}

@media(max-width:860px){
  .contact-layout{grid-template-columns:1fr;gap:32px}
  .form-row{grid-template-columns:1fr}
}

/* ════════════════════════════════════════
   SCROLLING SHOWCASE BAND
════════════════════════════════════════ */
.showcase-band{
  position:relative;
  overflow:hidden;
  background:var(--ink2);
  border-top:1px solid var(--ink3);
  border-bottom:1px solid var(--ink3);
  padding:0;
  height:260px;
  cursor:grab;
  user-select:none;
}
.showcase-band:active{cursor:grabbing}

/* Continuous scrolling track */
.showcase-track{
  display:flex;
  align-items:stretch;
  height:100%;
  will-change:transform;
  animation:showcaseScroll 40s linear infinite;
}
.showcase-track:hover{animation-play-state:paused}
@keyframes showcaseScroll{
  0%  {transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

.showcase-slide{
  flex-shrink:0;
  width:320px;
  height:100%;
  margin-right:4px;
  position:relative;
  overflow:hidden;
  border-radius:0;
}
.showcase-slide img{
  width:100%;height:100%;object-fit:cover;
  display:block;
  transition:transform .6s ease;
  filter:brightness(.82) saturate(1.1);
}
.showcase-slide:hover img{transform:scale(1.05);filter:brightness(1) saturate(1.2)}

/* Placeholder tile */
.showcase-ph{
  width:100%;height:100%;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:8px;
  background:linear-gradient(135deg, var(--ink3) 0%, #1e1c18 100%);
  border-left:3px solid var(--ink4);
}
.showcase-ph-type{
  font-family:var(--font-mono);font-size:.60rem;letter-spacing:3px;
  text-transform:uppercase;color:var(--gold);opacity:.7;
}
.showcase-ph-title{
  font-family:var(--font-head);font-size:1.3rem;font-weight:700;
  text-transform:uppercase;color:rgba(255,255,255,.18);letter-spacing:.05em;
  text-align:center;padding:0 20px;
}

/* Hover caption overlay */
.showcase-caption{
  position:absolute;bottom:0;left:0;right:0;
  padding:28px 18px 16px;
  background:linear-gradient(transparent, rgba(0,0,0,.75));
  opacity:0;
  transition:opacity .3s ease;
  display:flex;flex-direction:column;gap:2px;
}
.showcase-slide:hover .showcase-caption{opacity:1}
.showcase-cap-type{
  font-family:var(--font-mono);font-size:.58rem;letter-spacing:2.5px;
  text-transform:uppercase;color:var(--gold);
}
.showcase-cap-title{
  font-family:var(--font-head);font-size:1rem;font-weight:700;
  text-transform:uppercase;color:var(--white);letter-spacing:.03em;
}

/* Edge fade gradients */
.showcase-fade-l,.showcase-fade-r{
  position:absolute;top:0;bottom:0;width:120px;
  pointer-events:none;z-index:2;
}
.showcase-fade-l{
  left:0;
  background:linear-gradient(to right, var(--ink2) 0%, transparent 100%);
}
.showcase-fade-r{
  right:0;
  background:linear-gradient(to left, var(--ink2) 0%, transparent 100%);
}

@media(max-width:768px){
  .showcase-band{height:180px}
  .showcase-slide{width:220px}
  .showcase-track{animation-duration:28s}
}

/* ════════════════════════════════════════
   VIDEO LIBRARY — OUR WORK PAGE
════════════════════════════════════════ */

/* Filter bar */
.video-filter-bar{
  background:var(--ink2);
  border-bottom:1px solid var(--ink3);
  border-top:1px solid var(--ink3);
  overflow-x:auto;
  scrollbar-width:none;
  position:sticky;
  top:var(--nav-h);
  z-index:90;
}
.video-filter-bar::-webkit-scrollbar{display:none}
.video-filters{
  display:flex;
  gap:4px;
  padding:10px 0;
  white-space:nowrap;
}
.vf-btn{
  font-family:var(--font-head);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:rgba(240,237,232,.70);
  background:none;
  border:1px solid transparent;
  border-radius:50px;
  padding:6px 16px;
  cursor:pointer;
  transition:all .2s ease;
  flex-shrink:0;
}
.vf-btn:hover{color:var(--gold);border-color:rgba(167,132,34,.3)}
.vf-btn.active{
  background:var(--gold);
  color:var(--white);
  border-color:var(--gold);
}

/* Video grid */
.video-library-section{background:var(--ink2)}
.video-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
@media(max-width:1100px){.video-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:760px) {.video-grid{grid-template-columns:repeat(2,1fr);gap:12px}}
@media(max-width:480px) {.video-grid{grid-template-columns:1fr;gap:12px}}

/* Individual video card */
.video-card{
  background:var(--ink2);
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid var(--ink3);
  cursor:pointer;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.video-card:hover{
  transform:translateY(-4px);
  border-color:var(--gold);
  box-shadow:0 12px 40px rgba(0,0,0,.5);
}
.video-card:focus{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

/* Thumbnail area */
.vc-thumb{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:var(--ink3);
  overflow:hidden;
}
.vc-thumb img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease, filter .4s ease;
  filter:brightness(.88);
}
.video-card:hover .vc-thumb img{
  transform:scale(1.05);
  filter:brightness(.65);
}

/* Placeholder thumb — shown when no thumbnail exists */
.vc-thumb-ph{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--ink3) 0%,var(--ink2) 100%);
}
.vc-thumb-ph i{
  font-size:3.2rem;
  color:rgba(167,132,34,.55);   /* muted gold */
  transition:color .25s;
}
.video-card:hover .vc-thumb-ph i{
  color:rgba(167,132,34,.9);
}

/* Play button overlay */
.vc-play-overlay{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:8px;
  background:rgba(0,0,0,0);
  transition:background .3s ease;
}
.video-card:hover .vc-play-overlay{background:rgba(0,0,0,.28)}
.vc-play-btn{
  width:52px;height:52px;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;
  color:var(--ink);
  transform:scale(.85);
  opacity:.85;
  transition:transform .25s ease, opacity .25s ease, background .2s ease;
  box-shadow:0 4px 20px rgba(0,0,0,.5);
}
.video-card:hover .vc-play-btn{
  transform:scale(1);
  opacity:1;
  background:var(--white);
}
.vc-type-chip{
  font-family:var(--font-mono);
  font-size:.58rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--white);
  background:var(--gold);
  padding:3px 10px;
  border-radius:50px;
  opacity:0;
  transform:translateY(4px);
  transition:opacity .25s ease, transform .25s ease;
}
.video-card:hover .vc-type-chip{opacity:1;transform:translateY(0)}

/* No-video state */
.vc-no-video{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:6px;
  color:rgba(240,237,232,.45);
  font-size:1.6rem;
  cursor:default;
}
.vc-no-video span{font-family:var(--font-mono);font-size:.62rem;letter-spacing:2px;text-transform:uppercase}

/* Pinned video card */
.video-card.is-pinned{
  border-top:2px solid var(--gold);
}

/* Card info bar */
.vc-info{
  padding:13px 14px 14px;
}
.vc-prod-type{
  font-family:var(--font-mono);
  font-size:.62rem;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:4px;
}
.vc-title{
  font-family:var(--font-head);
  font-size:1rem;
  font-weight:700;
  text-transform:uppercase;
  color:var(--white);
  letter-spacing:.02em;
  line-height:1.2;
  margin-bottom:4px;
}
.vc-client{
  font-family:var(--font-mono);
  font-size:.64rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(240,237,232,.55);
  display:flex;align-items:center;gap:5px;
  margin-top:3px;
}

/* Empty state */
.video-empty{
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  padding:80px 20px;
  color:rgba(240,237,232,.55);
  gap:14px;
}
.video-empty i{font-size:3.5rem;color:var(--ink4)}
.video-empty h3{
  font-family:var(--font-head);font-size:1.5rem;
  font-weight:700;text-transform:uppercase;color:rgba(240,237,232,.70);
}
.video-empty p{font-size:1rem;color:rgba(240,237,232,.60);max-width:400px;line-height:1.6}

/* ── VIDEO MODAL ── */
.video-modal{
  position:fixed;inset:0;z-index:10000;
  display:flex;align-items:center;justify-content:center;
  padding:20px;
  opacity:0;pointer-events:none;
  transition:opacity .3s ease;
}
.video-modal.open{opacity:1;pointer-events:all}

.vm-backdrop{
  position:absolute;inset:0;
  background:rgba(0,0,0,.92);
  cursor:pointer;
}

.vm-container{
  position:relative;z-index:1;
  width:100%;max-width:960px;
  display:flex;flex-direction:column;
  transform:scale(.92) translateY(20px);
  transition:transform .35s cubic-bezier(.34,1.2,.64,1);
}
.video-modal.open .vm-container{transform:scale(1) translateY(0)}

.vm-close{
  position:absolute;top:-44px;right:0;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.15);
  color:var(--white);
  border-radius:50%;
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;
  cursor:pointer;
  transition:background .2s,transform .2s;
}
.vm-close:hover{background:var(--gold);transform:scale(1.1)}

.vm-player{
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:0 24px 80px rgba(0,0,0,.8);
}

.vm-meta{
  padding:14px 4px 0;
  display:flex;flex-direction:column;gap:3px;
}
.vm-meta-type{
  font-family:var(--font-mono);font-size:.62rem;letter-spacing:3px;
  text-transform:uppercase;color:var(--gold);
}
.vm-meta-title{
  font-family:var(--font-head);font-size:1.2rem;font-weight:700;
  text-transform:uppercase;color:var(--white);letter-spacing:.02em;
}
.vm-meta-client{
  font-family:var(--font-mono);font-size:.65rem;letter-spacing:1.5px;
  text-transform:uppercase;color:rgba(240,237,232,.70);
}

@media(max-width:600px){
  .vm-container{max-width:100%}
  .vm-close{top:-40px;right:0}
  .vf-btn{font-size:.72rem;padding:5px 12px}
}

/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */
.jp-lb{
  position:fixed;inset:0;z-index:9999;
  background:rgba(0,0,0,.96);
  display:flex;align-items:center;justify-content:center;
  padding:20px;opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.jp-lb.open{opacity:1;pointer-events:all}
.lb-img{
  max-width:90vw;max-height:84vh;object-fit:contain;
  border-radius:var(--radius);
  transform:scale(.88);opacity:0;
  transition:transform .4s cubic-bezier(.34,1.2,.64,1),opacity .35s ease;
}
.jp-lb.open .lb-img{transform:scale(1);opacity:1}
.lb-close,.lb-prev,.lb-next{
  position:absolute;
  background:rgba(255,255,255,.10);border:none;color:var(--white);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;transition:background .2s;
}
.lb-close{top:18px;right:22px;width:42px;height:42px}
.lb-prev{left:18px;top:50%;transform:translateY(-50%);width:46px;height:46px}
.lb-next{right:18px;top:50%;transform:translateY(-50%);width:46px;height:46px}
.lb-close:hover,.lb-prev:hover,.lb-next:hover{background:var(--gold)}
.lb-caption{
  position:absolute;bottom:20px;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,.55);font-family:var(--font-mono);
  font-size:.68rem;letter-spacing:2px;text-transform:uppercase;white-space:nowrap;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer{background:var(--ink-footer);color:rgba(240,237,232,.55)}
.footer-top{padding:60px 0 44px;border-bottom:1px solid rgba(255,255,255,.06)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:44px}
.footer-brand{font-family:var(--font-head);font-size:1.5rem;font-weight:800;text-transform:uppercase;color:var(--white)}
.footer-brand span{color:var(--gold)}
.footer-tagline{
  font-family:var(--font-mono);font-size:.58rem;letter-spacing:3px;
  text-transform:uppercase;color:var(--silver);margin:.25rem 0 .9rem;
}
.footer-desc{font-size:.86rem;line-height:1.70;color:rgba(240,237,232,.55);max-width:260px}
.footer-col-head{
  font-family:var(--font-mono);font-size:.60rem;letter-spacing:3px;
  text-transform:uppercase;color:rgba(240,237,232,.40);margin-bottom:.9rem;
}
.footer-col-links{display:flex;flex-direction:column;gap:7px}
.footer-col-links a{font-size:.88rem;color:rgba(240,237,232,.55);transition:color .2s}
.footer-col-links a:hover{color:var(--gold)}
.footer-phone{
  font-family:var(--font-head);font-size:1.4rem;font-weight:700;
  color:var(--white);display:block;margin-top:4px;letter-spacing:.3px;
}
.footer-bottom{
  padding:18px 0;display:flex;justify-content:space-between;
  align-items:center;flex-wrap:wrap;gap:10px;
  font-family:var(--font-mono);font-size:.60rem;letter-spacing:1.5px;
  text-transform:uppercase;color:rgba(240,237,232,.30);
}
@media(max-width:860px){.footer-grid{grid-template-columns:1fr 1fr;gap:28px}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr;gap:20px}}

/* ════════════════════════════════════════
   MISC / ANIMATIONS
════════════════════════════════════════ */

/* ── Two-tone H2 system ──
   .h2-dark  = used on dark/ink backgrounds  → first word white,  accent gold
   .h2-light = used on light/bone backgrounds → first word dark-grey, accent gold
   Apply to .h-section elements. The PHP splits the title into two <span>s.
   For headings written directly in markup, wrap the accent word in <em>.        */
.h-section em,.h-section span.accent{
  font-style:normal;
  color:var(--gold);
}
/* Dark background variant */
.h2-dark{color:var(--white)}
.h2-dark em,.h2-dark span.accent{color:var(--gold)}
/* Light background variant */
.h2-light{color:#2a2a28}
.h2-light em,.h2-light span.accent{color:var(--gold)}

/* ════════════════════════════════════════
   GLOBAL DARK-BACKGROUND CONTRAST
   All text on --ink / --ink2 / --ink3 backgrounds.
   Rule: headings = var(--white), body copy = rgba(240,237,232,.72)
════════════════════════════════════════ */

/* Utility body copy classes (used on both light and dark — dark wins via specificity where needed) */
.body-lg{font-size:1.05rem;line-height:1.80;color:var(--text2)}
.body-sm{font-size:1rem;line-height:1.72;color:var(--text2)}

/* Hero (dark bg) */
.hero-sub{
  font-size:1rem;color:rgba(240,237,232,.72);
  max-width:520px;line-height:1.78;margin-bottom:2.5rem;
}

/* Page hero bar (inner pages, dark bg) */
.page-hero-sub{
  color:rgba(240,237,232,.72);font-size:1rem;
  line-height:1.72;margin-top:.9rem;max-width:620px;
}

/* Service cards (dark bg — ink2) */
.svc-body{font-size:1rem;color:rgba(240,237,232,.72);line-height:1.72;margin-bottom:1.1rem}
.svc-list li{
  font-family:var(--font-mono);font-size:.72rem;letter-spacing:1px;
  text-transform:uppercase;color:rgba(240,237,232,.60);
  display:flex;align-items:center;gap:8px;
}

/* Services inline strip (products page, dark bg) */
.svc-inline-body{font-size:1rem;color:rgba(240,237,232,.72);line-height:1.68;margin-bottom:.9rem}
.svc-inline-list li{
  font-family:var(--font-mono);font-size:.70rem;letter-spacing:1px;text-transform:uppercase;
  color:rgba(240,237,232,.60);padding:5px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;gap:7px;
}

/* Eco / sustainability section (dark bg) */
.eco-body{font-size:1rem;color:rgba(240,237,232,.72);line-height:1.68}
.eco-body strong{color:#4caf50}

/* Product sections (dark bg) — authoritative, no override needed */
.prod-body{font-size:1rem;color:rgba(240,237,232,.72);line-height:1.78}
.prod-features li{display:flex;align-items:flex-start;gap:9px;font-size:1rem;color:rgba(240,237,232,.72)}

/* Production Suite equipment cards (dark bg) */
.cap-desc{font-size:1rem;color:rgba(240,237,232,.72);line-height:1.72;margin-bottom:1.1rem}

/* Home product preview cards (dark bg) */
.prod-blurb{font-size:.90rem;color:rgba(240,237,232,.60);line-height:1.55;margin-bottom:.9rem}



.fade-up{opacity:1;transform:none}
@media(prefers-reduced-motion:no-preference){
  .fade-up.rdy{opacity:0;transform:translateY(26px);transition:opacity .6s ease,transform .6s ease}
  .fade-up.rdy.vis{opacity:1;transform:translateY(0)}
}
.chip{
  display:inline-block;
  font-family:var(--font-mono);font-size:.62rem;letter-spacing:2px;text-transform:uppercase;
  background:var(--gold-lt);color:var(--gold);
  padding:4px 12px;border-radius:50px;border:1px solid rgba(167,132,34,.22);
}
.rule-gold{width:44px;height:4px;background:var(--gold);border-radius:2px;margin:1.1rem 0}
.spinner{
  width:26px;height:26px;border:3px solid var(--bone3);border-top-color:var(--gold);
  border-radius:50%;animation:spin .7s linear infinite;margin:auto;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* ════════════════════════════════════════
   PORTFOLIO PAGE
════════════════════════════════════════ */

/* ── Filter bar ── */
.pf-filter-bar{
  background:var(--ink);
  border-bottom:1px solid var(--ink3);
  position:sticky;
  top:var(--nav-h);
  z-index:50;
}
.pf-filter-scroll{
  display:flex;
  align-items:center;
  gap:6px;
  padding:10px 0;
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.pf-filter-scroll::-webkit-scrollbar{display:none}

/* Filter button */
.pf-filter-btn{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 14px 7px 12px;
  border-radius:50px;
  border:1px solid var(--ink3);
  background:transparent;
  color:rgba(240,237,232,.50);
  font-family:var(--font-mono);
  font-size:.60rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  cursor:pointer;
  transition:border-color .18s, color .18s, background .18s, box-shadow .18s;
  white-space:nowrap;
  line-height:1;
}
.pf-filter-btn i{ font-size:.72rem; flex-shrink:0; }
.pf-filter-btn:hover{
  border-color:var(--gold);
  color:var(--gold-mid);
}
.pf-filter-btn.active{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--white);
  box-shadow:0 2px 12px rgba(167,132,34,.30);
}
/* count badge */
.pfb-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:50px;
  font-size:.55rem;
  font-weight:700;
  letter-spacing:.5px;
  background:rgba(240,237,232,.12);
  color:rgba(240,237,232,.55);
  transition:background .18s, color .18s;
  flex-shrink:0;
}
.pf-filter-btn.active .pfb-count{
  background:rgba(255,255,255,.22);
  color:var(--white);
}
.pf-filter-btn:hover .pfb-count{
  background:rgba(167,132,34,.15);
  color:var(--gold);
}

/* ── Active filter label strip ── */
.pf-active-label{
  background:var(--ink2);
  border-bottom:1px solid var(--ink3);
  padding:8px 0;
}
.pf-active-label .container{
  display:flex;
  align-items:center;
  gap:14px;
}
.pal-text{
  font-family:var(--font-mono);
  font-size:.60rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(240,237,232,.45);
}
.pal-clear{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:4px 10px;
  border-radius:50px;
  border:1px solid rgba(240,237,232,.18);
  background:transparent;
  color:rgba(240,237,232,.45);
  font-family:var(--font-mono);
  font-size:.58rem;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .18s;
}
.pal-clear:hover{
  border-color:var(--gold);
  color:var(--gold);
}

/* ── Category section ── */
.pf-category{
  margin-bottom:72px;
  /* transition for filter show/hide */
  transition:opacity .30s ease, transform .30s ease;
  opacity:1;
  transform:translateY(0);
}
.pf-category:last-child{margin-bottom:0}
.pf-cat-hidden{
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
}

.pf-cat-header{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:28px;
  flex-wrap:wrap;
}
.pf-cat-icon{
  width:48px;height:48px;
  border-radius:var(--radius);
  background:rgba(167,132,34,.12);
  border:1px solid rgba(167,132,34,.25);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;
  color:var(--gold);
  flex-shrink:0;
}
.pf-cat-meta{ flex:1; min-width:0; }
.pf-cat-meta .eyebrow{ margin-bottom:3px; }
.pf-cat-title{
  font-family:var(--font-head);
  font-size:clamp(1.4rem,2.5vw,1.9rem);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--white);
  margin:0;
}
.pf-cat-link{ margin-left:auto; flex-shrink:0; }
@media(max-width:600px){ .pf-cat-link{ display:none; } }

/* ── Photo grid ── */
.pf-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:6px;
}
@media(max-width:1024px){ .pf-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:640px)  { .pf-grid{ grid-template-columns:repeat(2,1fr); } }

.pf-cell{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:var(--radius);
  cursor:pointer;
  background:var(--ink3);
  outline:none;
}
.pf-cell:focus-visible{
  box-shadow:0 0 0 3px var(--gold);
}
.pf-cell img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform .40s ease, filter .40s ease, opacity .25s ease;
  filter:brightness(.88);
}
.pf-cell:hover img, .pf-cell:focus-visible img{
  transform:scale(1.06);
  filter:brightness(.48);
}
.pf-overlay{
  position:absolute; inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  opacity:0;
  transition:opacity .28s ease;
  pointer-events:none;
}
.pf-cell:hover .pf-overlay,
.pf-cell:focus-visible .pf-overlay{ opacity:1; }
.pf-overlay i{ font-size:1.6rem; color:var(--white); }
.pf-caption{
  font-family:var(--font-head);
  font-size:.76rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--white);
  text-align:center;
  padding:0 14px;
  text-shadow:0 1px 6px rgba(0,0,0,.7);
  max-width:170px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* ── No-results ── */
.pf-no-results{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  padding:80px 24px;
  text-align:center;
}
.pf-no-results i{
  font-size:3rem;
  color:var(--ink4);
}
.pf-no-results p{
  font-size:1rem;
  color:rgba(240,237,232,.50);
  margin:0;
}

/* ── Portfolio lightbox ── */
.pf-lightbox{
  position:fixed; inset:0;
  z-index:10000;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition:opacity .25s ease;
}
.pf-lightbox[hidden]{ display:none; }
.pf-lightbox.open{ opacity:1; pointer-events:all; }
.pf-lb-backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.93);
}
.pf-lb-container{
  position:relative; z-index:1;
  display:flex; flex-direction:column; align-items:center;
  max-width:min(1100px,96vw);
  max-height:95vh;
  padding:16px;
}
.pf-lb-img-wrap{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  min-height:120px;
}
.pf-lb-img-wrap img{
  max-width:min(1068px,90vw);
  max-height:78vh;
  object-fit:contain;
  display:block;
  border-radius:var(--radius);
  transition:opacity .22s ease;
}
.pf-lb-spinner{
  position:absolute;
  display:flex; align-items:center; justify-content:center;
  inset:0;
}
.pf-lb-footer{
  display:flex; flex-direction:column; align-items:center; gap:4px;
  margin-top:10px;
}
.pf-lb-caption{
  font-family:var(--font-head);
  font-size:.84rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.5px;
  color:rgba(240,237,232,.70);
  text-align:center; min-height:1.1em;
}
.pf-lb-counter{
  font-family:var(--font-mono);
  font-size:.62rem; letter-spacing:2px;
  color:rgba(240,237,232,.38);
}
.pf-lb-close{
  position:fixed; top:18px; right:22px;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18);
  color:var(--white); font-size:1.1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s; z-index:2;
}
.pf-lb-close:hover{ background:rgba(255,255,255,.24); }
.pf-lb-prev, .pf-lb-next{
  position:fixed; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.15);
  color:var(--white); font-size:1.2rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s; z-index:2;
}
.pf-lb-prev:hover, .pf-lb-next:hover{ background:rgba(255,255,255,.22); }
.pf-lb-prev{ left:18px; }
.pf-lb-next{ right:18px; }
@media(max-width:600px){
  .pf-lb-prev{ left:6px; }
  .pf-lb-next{ right:6px; }
  .pf-lb-prev, .pf-lb-next{ width:38px; height:38px; font-size:1rem; }
}

/* ── RankMath: hidden page article wrapper ──────────────────────
   Keeps the article + content in DOM for schema / SEO parsers
   but completely invisible and non-interactive to visitors.
─────────────────────────────────────────────────────────────── */
.sr-only-article {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
}

/* ── RankMath breadcrumb compat ─────────────────────────────────
   RankMath outputs <ol class="rank-math-breadcrumb"> — map it
   to our existing .breadcrumb style so it looks identical.
─────────────────────────────────────────────────────────────── */
.breadcrumb.rankmath-bc { padding: 0; }
.rank-math-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,237,232,.45);
}
.rank-math-breadcrumb li { display: flex; align-items: center; gap: 6px; }
.rank-math-breadcrumb li::after {
  content: '/';
  opacity: .35;
  font-size: .7em;
}
.rank-math-breadcrumb li:last-child::after { display: none; }
.rank-math-breadcrumb a {
  color: rgba(240,237,232,.45);
  text-decoration: none;
  transition: color .2s;
}
.rank-math-breadcrumb a:hover { color: var(--gold); }
.rank-math-breadcrumb .last { color: rgba(240,237,232,.70); }

/* ════════════════════════════════════════
   PRODUCT PREVIEW CARD — THUMBNAIL BG
   Applied by site.js when thumbnail images
   are uploaded and tagged to a service.
════════════════════════════════════════ */
.prod-preview-card.has-thumb {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Keep border/transform from base style */
}

/* Dark overlay — 80% at rest, 15% on hover */
.prod-preview-card.has-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.80);
  transition: background 0.45s ease;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.prod-preview-card.has-thumb:hover::before {
  background: rgba(13,13,13,0.15);
}

/* Keep all child content above the overlay */
.prod-preview-card.has-thumb > * {
  position: relative;
  z-index: 1;
}

/* On hover with image, brighten text slightly */
.prod-preview-card.has-thumb:hover .prod-name {
  color: var(--white);
}
.prod-preview-card.has-thumb:hover .prod-blurb {
  color: rgba(240,237,232,.85);
}
.prod-preview-card.has-thumb:hover .prod-arrow {
  color: var(--gold);
}