
/* =========================================================
   GS Print Works Website Styles - Polished v2
   ========================================================= */

* {
  box-sizing:border-box
}
:root {
  --red:#e00000;
  --red-dark:#b90000;
  --black:#050505;
  --dark:#111;
  --charcoal:#1b1b1b;
  --white:#fff;
  --gray-light:#f5f5f5;
  --gray-mid:#d8d8d8;
  --gray-text:#555;
  --shadow:0 18px 40px rgba(0,0,0,.18)
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--black);
  background:var(--white);
  line-height:1.5
}
a {
  color:inherit
}
img {
  max-width:100%
}
.container {
  width:min(1360px,calc(100% - 48px));
  margin:0 auto
}
.site-header {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  color:var(--white);
  background:rgba(5,5,5,.35);
  border-bottom:2px solid rgba(224,0,0,.85);
  transition:background .25s ease,box-shadow .25s ease
}
.site-header.scrolled {
  background:rgba(5,5,5,.96);
  box-shadow:0 12px 30px rgba(0,0,0,.35)
}
.nav {
  height:240px;
  display:flex;
  align-items:center;
  gap:28px;
  transition:height .25s ease
}
.site-header.scrolled .nav {
  height:88px
}
.brand img {
  width:220px;
  display:block;
  transition:width .25s ease
}
.site-header.scrolled .brand img {
  width:155px
}
.main-nav {
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:auto;
  text-transform:uppercase;
  font-size:.86rem;
  font-weight:900
}
.main-nav a {
  text-decoration:none;
  color:var(--white);
  position:relative
}
.main-nav a:hover {
  color:var(--red)
}
.main-nav a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:3px;
  background:var(--red);
  transition:width .2s ease
}
.main-nav a:hover::after {
  width:100%
}
.header-actions {
  display:flex;
  align-items:center;
  gap:14px
}
.facebook-icon {
  width:46px;
  height:46px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:var(--white);
  border:2px solid rgba(255,255,255,.28);
  border-radius:50%;
  transition:background .25s ease,border-color .25s ease,transform .25s ease
}
.facebook-icon:hover {
  background:var(--red);
  border-color:var(--red);
  transform:translateY(-2px)
}
.header-quote {
  background:var(--red);
  color:var(--white);
  text-decoration:none;
  text-transform:uppercase;
  font-weight:900;
  padding:14px 22px;
  border-radius:4px;
  display:flex;
  gap:14px;
  align-items:center;
  transition:background .2s ease
}
.header-quote:hover {
  background:var(--red-dark)
}
.menu-toggle {
  display:none;
  background:var(--red);
  color:var(--white);
  border:0;
  padding:10px 13px;
  font-size:1.25rem;
  border-radius:4px
}

.hero {
  min-height:760px;
  position:relative;
  background:var(--black);
  color:var(--white);
  overflow:hidden
}
.hero-image {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center right;
  filter:brightness(.9) saturate(1.05)
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#050505 0%,rgba(5,5,5,.96) 28%,rgba(5,5,5,.58) 58%,rgba(5,5,5,.2) 100%),linear-gradient(180deg,rgba(5,5,5,.15),rgba(5,5,5,.9))
}
/* Increase padding-top here if the hero text needs to sit lower under the fixed header. */
.hero-content {
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  padding-top:250px
}
.hero-copy {
  max-width:690px
}
.eyebrow {
  margin:0 0 12px;
  text-transform:uppercase;
  font-weight:900;
  font-size:.82rem;
  letter-spacing:.18em
}
.eyebrow.red {
  color:var(--red)
}
.hero h1 {
  font-size:clamp(3.6rem,7.6vw,7rem);
  line-height:.88;
  text-transform:uppercase;
  letter-spacing:-.07em;
  margin:0 0 12px
}
.hero h1 span,.hero h1 strong {
  display:block
}
.hero h1 strong {
  color:var(--red)
}
.red-rule {
  width:92px;
  height:4px;
  background:var(--red);
  margin:8px 0 18px
}
.hero-lead,.hero p {
  font-size:1.25rem;
  color:var(--white);
  margin-bottom:28px
}
.hero-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:14px
}
.hero-stats {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px
}
.hero-stats span {
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:.9rem
}
.button {
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:15px 30px;
  border-radius:4px;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  border:0;
  cursor:pointer;
  letter-spacing:.02em;
  transition:background .2s ease,color .2s ease,transform .2s ease,box-shadow .2s ease
}
.button:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 22px rgba(0,0,0,.18)
}
.button-red {
  background:var(--red);
  color:var(--white)
}
.button-red:hover {
  background:var(--red-dark)
}
.button-dark {
  background:rgba(0,0,0,.72);
  color:var(--white);
  border:1px solid rgba(255,255,255,.25)
}
.button-dark:hover {
  background:var(--white);
  color:var(--black)
}
.button-light {
  background:var(--white);
  color:var(--black)
}
.button-light:hover {
  background:var(--black);
  color:var(--white)
}
.button-outline {
  border:2px solid var(--black);
  color:var(--black);
  background:var(--white)
}
.button-outline:hover {
  border-color:var(--red);
  color:var(--red)
}
.button:disabled {
  opacity:.65;
  cursor:not-allowed
}
.feature-strip-wrap {
  background:var(--dark);
  color:var(--white)
}
.feature-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  min-height:112px
}
.feature {
  display:flex;
  gap:18px;
  align-items:center;
  padding:24px 28px;
  border-right:1px solid #666
}
.feature:last-child {
  border-right:0
}
.feature-icon {
  color:var(--red);
  font-size:2.7rem;
  line-height:1;
  font-weight:900
}
.feature h3 {
  text-transform:uppercase;
  font-size:.95rem;
  margin:0 0 5px
}
.feature p {
  color:#e6e6e6;
  margin:0;
  font-size:.9rem
}
.split-section {
  display:grid;
  grid-template-columns:1fr 1.15fr;
  min-height:455px
}
.split-text {
  padding:70px max(40px,calc((100vw - 1360px)/2));
  background:var(--white)
}
h2 {
  font-size:clamp(2.2rem,4vw,3.4rem);
  line-height:.98;
  text-transform:uppercase;
  letter-spacing:-.06em;
  margin:0 0 22px
}
.split-text h2 span {
  color:var(--red)
}
.split-text p {
  font-size:1.05rem;
  color:#171717
}
.split-visual {
  background:#e6e6e6;
  min-height:455px
}
.split-visual img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block
}
.products-section,.gallery-section,.faq-section {
  background:linear-gradient(180deg,#f8f8f8,#e7e7e7);
  padding:68px 0 78px
}
.center {
  text-align:center
}
.section-intro {
  max-width:780px;
  margin:0 auto 30px;
  color:var(--gray-text);
  font-size:1.06rem
}
.product-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:28px
}
.product-card {
  background:var(--white);
  border-radius:8px;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
  transition:transform .22s ease,box-shadow .22s ease;
  text-align:left
}
.product-card:hover {
  transform:translateY(-7px);
  box-shadow:0 24px 46px rgba(0,0,0,.24)
}
.product-card img {
  width:100%;
  height:220px;
  object-fit:cover;
  display:block
}
.product-body {
  padding:0 24px 24px
}
.product-icon {
  width:60px;
  height:60px;
  background:var(--red);
  color:var(--white);
  display:grid;
  place-items:center;
  border-radius:50%;
  font-size:1.4rem;
  font-weight:900;
  margin:-30px 0 13px;
  position:relative;
  z-index:2
}
.product-card h3 {
  text-transform:uppercase;
  font-size:1.12rem;
  margin:0 0 8px
}
.product-card p {
  color:#444;
  font-size:.96rem;
  text-transform:none;
  font-weight:400;
  margin:0 0 16px
}
.product-card a {
  color:var(--red);
  font-weight:900;
  text-transform:uppercase;
  text-decoration:none
}
.product-card a:hover {
  text-decoration:underline
}
.schools-section {
  background:linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.62)),linear-gradient(135deg,#202020,#050505);
  color:var(--white);
  padding:74px 0
}
.schools-box {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:40px;
  align-items:center
}
.schools-box p {
  color:#e5e5e5;
  font-size:1.08rem
}
.gallery-section {
  background:var(--white)
}
.filter-row {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 30px
}
.filter {
  border:2px solid #222;
  background:#fff;
  color:#111;
  text-transform:uppercase;
  font-weight:900;
  border-radius:999px;
  padding:10px 16px;
  cursor:pointer
}
.filter.active,.filter:hover {
  background:var(--red);
  border-color:var(--red);
  color:#fff
}
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:28px
}
.gallery-card {
  margin:0;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow);
  text-align:left;
  transition:transform .22s ease,opacity .2s ease
}
.gallery-card:hover {
  transform:translateY(-5px)
}
.gallery-card.hidden {
  display:none
}
.gallery-card img {
  width:100%;
  height:260px;
  object-fit:cover;
  display:block
}
.gallery-card figcaption {
  display:grid;
  gap:4px;
  padding:18px 20px
}
.gallery-card strong {
  text-transform:uppercase
}
.gallery-card span {
  color:#666
}
.faq-section {
  background:#f7f7f7
}
.faq-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:28px
}
.faq-grid details {
  background:#fff;
  border-radius:8px;
  padding:18px 20px;
  box-shadow:0 10px 24px rgba(0,0,0,.09)
}
.faq-grid summary {
  cursor:pointer;
  font-weight:900;
  text-transform:uppercase
}
.faq-grid p {
  color:#555
}
.request-banner {
  background:linear-gradient(135deg,var(--red),#b90000),repeating-linear-gradient(45deg,transparent 0 30px,rgba(255,255,255,.08) 30px 31px);
  color:var(--white);
  padding:56px 0 66px
}
.request-wrap {
  display:grid;
  grid-template-columns:.62fr 1.38fr;
  gap:36px;
  align-items:start
}
.request-title {
  display:flex;
  gap:24px;
  align-items:center
}
.big-icon {
  font-size:4rem;
  border:3px solid var(--white);
  width:96px;
  height:96px;
  display:grid;
  place-items:center
}
.request-title h2 {
  margin-bottom:8px
}
.request-title p {
  font-size:1.1rem;
  margin:0
}
.quote-form {
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.3);
  padding:26px;
  border-radius:8px
}
.form-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px
}
label {
  display:grid;
  gap:6px;
  text-transform:uppercase;
  font-weight:900;
  font-size:.78rem;
  letter-spacing:.05em
}
input,select,textarea {
  width:100%;
  border:0;
  border-radius:3px;
  padding:13px 14px;
  font:inherit;
  background:var(--white);
  color:var(--black)
}
textarea {
  margin-top:14px;
  resize:vertical
}
.file-upload {
  margin:14px 0
}
.file-upload span {
  font-size:.78rem;
  font-weight:700;
  letter-spacing:0;
  text-transform:none;
  color:#fff
}
.hidden-field {
  display:none
}
.form-note {
  font-weight:800
}
.footer {
  background:var(--black);
  color:var(--white);
  padding-top:40px
}
.footer-grid {
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1.1fr;
  gap:42px
}
.footer-logo {
  width:190px;
  background:var(--black);
  padding:8px;
  border-radius:3px
}
.footer-tagline {
  color:var(--red);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em
}
.footer h3 {
  text-transform:uppercase;
  font-size:.9rem
}
.footer a {
  display:block;
  color:#e9e9e9;
  text-decoration:none;
  margin-bottom:6px
}
.footer a:hover {
  color:var(--red)
}
.footer p {
  color:#ddd
}
.pin {
  color:var(--white)!important
}
.social-links {
  display:flex;
  gap:15px;
  margin-top:14px
}
.social-links a {
  width:48px;
  height:48px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  background:#222;
  color:var(--white);
  transition:background .25s ease,transform .25s ease
}
.social-links a:hover {
  background:var(--red);
  transform:translateY(-3px)
}
.copyright {
  text-align:center;
  color:#bbb;
  border-top:1px solid #2d2d2d;
  margin-top:32px;
  padding:16px
}
.floating-quote {
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:45;
  background:var(--red);
  color:var(--white);
  text-decoration:none;
  text-transform:uppercase;
  font-weight:900;
  padding:14px 18px;
  border-radius:999px;
  box-shadow:0 12px 28px rgba(224,0,0,.35);
  transition:background .2s ease,transform .2s ease
}
.floating-quote:hover {
  background:var(--red-dark);
  transform:translateY(-2px)
}
.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease,transform .65s ease
}
.reveal.visible {
  opacity:1;
  transform:translateY(0)
}
@media (prefers-reduced-motion:reduce) {
  * {
    scroll-behavior:auto!important;
    transition:none!important
  }
  .reveal {
    opacity:1;
    transform:none
  }

}

@media (max-width:1180px) {
  .header-quote {
    display:none
  }
  .product-grid,.gallery-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .feature-strip {
    grid-template-columns:repeat(2,1fr)
  }
  .feature {
    border-bottom:1px solid #666
  }
  .main-nav {
    gap:16px;
    font-size:.78rem
  }

}

@media (max-width:860px) {
  .container {
    width:min(100% - 32px,1360px)
  }
  .site-header {
    background:rgba(5,5,5,.96)
  }
  .nav,.site-header.scrolled .nav {
    height:auto;
    min-height:84px;
    padding:12px 0
  }
  .brand img,.site-header.scrolled .brand img {
    width:145px
  }
  .menu-toggle {
    display:block;
    margin-left:auto
  }
  .facebook-icon {
    width:42px;
    height:42px
  }
  .main-nav {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#080808;
    padding:20px;
    flex-direction:column;
    align-items:flex-start;
    border-bottom:2px solid var(--red)
  }
  .main-nav.open {
    display:flex
  }
  .hero,/* Increase padding-top here if the hero text needs to sit lower under the fixed header. */
.hero-content {
    min-height:640px
  }
  /* Increase padding-top here if the hero text needs to sit lower under the fixed header. */
.hero-content {
    padding-top:110px
  }
  .feature-strip,.split-section,.schools-box,.request-wrap,.footer-grid,.faq-grid {
    grid-template-columns:1fr
  }
  .split-text {
    padding:50px 24px
  }
  .form-grid {
    grid-template-columns:1fr
  }
  .gallery-grid {
    grid-template-columns:1fr
  }

}

@media (max-width:560px) {
  .hero h1 {
    font-size:3.35rem
  }
  .hero-buttons {
    flex-direction:column;
    align-items:flex-start
  }
  .product-grid {
    grid-template-columns:1fr
  }
  .feature-strip {
    grid-template-columns:1fr
  }
  .feature {
    border-right:0
  }
  .big-icon {
    display:none
  }
  .floating-quote {
    right:14px;
    bottom:14px
  }
  .product-card img,.gallery-card img {
    height:210px
  }

}



/* Dynamic gallery/admin support */
.gallery-loading {
  grid-column: 1 / -1;
  color: var(--muted, #b9c2cf);
  text-align: center;
  padding: 2rem;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 18px;
}

.admin-link {
  opacity: .55;
  font-size: .9rem;
}


/* Album and filter pages */
.page-hero.compact-hero {
  padding: 150px 0 50px;
  background: linear-gradient(135deg, #111 0%, #222 55%, #b00000 100%);
  color: #fff;
}
.gallery-browser {
  padding: 60px 0 90px;
  background: #f6f6f6;
}
.browser-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.gallery-sidebar {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 18px;
}
.filter-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.filter-box h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}
.link-list {
  display: grid;
  gap: 8px;
}
.link-list a {
  color: #222;
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 10px;
  background: #f1f1f1;
  font-weight: 700;
  transition: .2s ease;
}
.link-list a:hover,
.link-list a.active {
  color: #fff;
  background: #d00000;
}
.full-width {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.result-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.result-toolbar p {
  margin: 0;
  font-weight: 800;
}
.small-button {
  padding: 10px 16px;
  font-size: .95rem;
}
.album-grid small,
.gallery-card small {
  display: block;
  margin-top: 8px;
  color: #d00000;
  font-weight: 800;
}
.empty-gallery {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.school-link-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.school-link-grid a {
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  padding: 14px 16px;
  transition: .2s ease;
}
.school-link-grid a:hover {
  background: #fff;
  color: #d00000;
  transform: translateY(-2px);
}
.checkbox-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.checkbox-label input {
  width: auto !important;
}

.datalist-field {
  width: 100%;
}
.datalist-note {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.quote-form .datalist-note {
  color: rgba(0,0,0,.58);
}
@media (max-width: 850px) {
  .browser-layout {
    grid-template-columns: 1fr;
  }
  .gallery-sidebar {
    position: static;
  }
  .school-link-grid {
    grid-template-columns: 1fr;
  }
  .result-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Phase 1 Catalog / School Hub / Builder */
.school-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.school-hub-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.school-hub-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(230,230,230,.82));
  padding: 18px;
}
.school-hub-card:hover img {
  transform: scale(1.025);
}
.school-hub-card img {
  transition: transform .25s ease;
}
.school-hub-card > div {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.school-hub-card h2 {
  margin: 4px 0 10px;
  font-size: clamp(2.05rem, 2.75vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -.065em;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
  max-width: 100%;
}
.school-hub-card h2.school-title-medium {
  font-size: clamp(1.8rem, 2.35vw, 2.85rem);
  letter-spacing: -.072em;
}
.school-hub-card h2.school-title-long {
  font-size: clamp(1.5rem, 2.05vw, 2.45rem);
  letter-spacing: -.078em;
}
.school-hub-card h2.school-title-xlong {
  font-size: clamp(1.25rem, 1.7vw, 2rem);
  letter-spacing: -.08em;
}
.school-hub-card .button {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
/* School product category pills: visible in their normal state on light cards */
.school-hub-card .school-type-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 22px;
}
.school-hub-card .school-type-row a,
.school-hub-card .school-type-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #e50914 !important;
  border-radius: 999px;
  background-color: #e50914 !important;
  color: #ffffff !important;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.15;
  opacity: 1 !important;
  visibility: visible !important;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.school-hub-card .school-type-row a:hover,
.school-hub-card .school-type-row a:focus-visible {
  background-color: #b90000 !important;
  border-color: #b90000 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.school-hub-card .school-type-row span {
  cursor: default;
}
.builder-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: start; }
.builder-product-list { display: grid; gap: 12px; }
.builder-choice { display: grid; grid-template-columns: 88px 1fr; gap: 14px; align-items: center; text-align: left; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 10px; color: #fff; cursor: pointer; }
.builder-choice:hover { border-color: #e50914; transform: translateY(-1px); }
.builder-choice img { width: 88px; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.builder-choice strong { display: block; }
.builder-choice small { color: #aeb7c6; }
.builder-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 24px; display: grid; gap: 14px; }
.builder-form label { display: grid; gap: 8px; font-weight: 900; }
.builder-form input, .builder-form select, .builder-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: #0f121a; color: #fff; padding: 14px 16px; font: inherit; }
.gallery-card small { display: block; margin-top: 8px; color: #aeb7c6; }
@media (max-width: 900px) { .builder-layout { grid-template-columns: 1fr; } }

/* Admin-configurable appearance hooks */
.hero.custom-hero-bg,
.page-hero.custom-hero-bg {
  background-image: linear-gradient(90deg, rgba(0,0,0,.90), rgba(0,0,0,.52)), var(--hero-bg) !important;
  background-size: cover;
  background-position: center;
}
.site-footer a[data-appearance],
.footer a[data-appearance] {
  display: inline;
}


/* =====================================================
   GS PRINT WORKS CMS v2.0 FINAL OVERRIDES
   Homepage School Hub CTA + resilient school logo/title sizing
===================================================== */

.school-cta-section {
  padding: 90px 24px;
  background: radial-gradient(circle at top left, rgba(229, 0, 0, 0.18), transparent 34%), #050505;
  color: #fff;
}

.school-cta-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: linear-gradient(135deg, #141414, #050505);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.school-cta-card h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .95;
  margin: 10px 0 18px;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.school-cta-card p {
  max-width: 780px;
  margin: 0 auto 32px;
  color: #e8e8e8;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  padding: 18px 34px;
}

.school-hub-grid {
  align-items: stretch;
}

.school-hub-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.school-hub-card img,
.school-logo img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(235,235,235,.86));
  padding: 18px;
}

.school-hub-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.school-hub-card h2,
.school-title {
  font-size: clamp(2rem, 2.75vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.065em;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

.school-hub-card h2.school-title-medium,
.school-title.school-title-medium {
  font-size: clamp(1.75rem, 2.25vw, 2.8rem);
}

.school-hub-card h2.school-title-long,
.school-title.school-title-long {
  font-size: clamp(1.45rem, 1.95vw, 2.4rem);
}

.school-hub-card h2.school-title-xlong,
.school-title.school-title-xlong {
  font-size: clamp(1.2rem, 1.6vw, 2rem);
}

.school-hub-card .button,
.school-hub-card .btn,
.school-hub-card a.button,
.school-hub-card a.btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

@media (max-width: 720px) {
  .school-cta-section { padding: 64px 16px; }
  .school-cta-card { border-radius: 22px; }
  .school-hub-card { min-height: auto; }
  .school-hub-card img, .school-logo img { height: 180px; }
}


/* GS Print Works v5.0 platform refresh */
:root { --v5-red:#ed1c24; --v5-ink:#0b0b0d; --v5-panel:#141417; --v5-line:rgba(255,255,255,.11); }
html { scroll-behavior:smooth; }
body { background:#0b0b0d; }
.hero { min-height:clamp(650px,86vh,900px); }
.hero-overlay { background:linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.68) 48%,rgba(0,0,0,.18) 100%),linear-gradient(0deg,#0b0b0d 0%,transparent 35%); }
.hero-copy { max-width:820px; }
.hero h1 { font-size:clamp(4rem,9vw,8.5rem); line-height:.83; letter-spacing:-.07em; }
.hero h1 span,.hero h1 strong { display:block; }
.hero h1 strong { color:var(--v5-red); }
.v5-trust-bar { background:#fff;color:#111;border-bottom:1px solid #ddd; }
.v5-trust-bar .container { display:grid;grid-template-columns:repeat(4,1fr);gap:1px;padding:0; }
.v5-trust-bar span { padding:20px 24px;border-right:1px solid #ddd;font-size:.9rem; }
.v5-trust-bar span:last-child { border-right:0; }
.v5-trust-bar b { display:block;text-transform:uppercase;letter-spacing:.12em;font-size:.7rem;color:var(--v5-red);margin-bottom:4px; }
.v5-services { padding:110px 0;background:radial-gradient(circle at 100% 0%,rgba(237,28,36,.13),transparent 32%),#0b0b0d;color:#fff; }
.v5-section-heading { max-width:850px;margin-bottom:52px; }
.v5-section-heading h2 { font-size:clamp(2.7rem,6vw,5.5rem);line-height:.95;letter-spacing:-.055em;margin:12px 0 22px; }
.v5-section-heading h2 span { color:var(--v5-red); }
.v5-section-heading>p:last-child { color:#aaa;font-size:1.12rem;max-width:680px; }
.v5-department-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));border-top:1px solid var(--v5-line); }
.v5-department-card { display:grid;grid-template-columns:58px 1fr auto;gap:20px;align-items:start;padding:38px 30px;color:#fff;text-decoration:none;border-bottom:1px solid var(--v5-line);transition:.25s ease; }
.v5-department-card:nth-child(odd) { border-right:1px solid var(--v5-line); }
.v5-department-card:hover { background:#17171a;transform:translateY(-2px); }
.v5-department-number { color:var(--v5-red);font-size:.75rem;letter-spacing:.14em;padding-top:8px; }
.v5-department-card h3 { margin:0 0 10px;font-size:clamp(1.45rem,2.4vw,2.25rem);letter-spacing:-.035em; }
.v5-department-card p { margin:0;color:#aaa;line-height:1.65; }
.v5-department-card b { font-size:1.6rem;color:var(--v5-red);transition:.2s; }
.v5-department-card:hover b { transform:translateX(7px); }
.site-header.scrolled { background:rgba(8,8,10,.94);backdrop-filter:blur(18px); }
.button,.header-quote { border-radius:7px; }
.gallery-card { border-radius:14px;overflow:hidden; }
@media(max-width:900px){.v5-trust-bar .container{grid-template-columns:repeat(2,1fr)}.v5-trust-bar span:nth-child(2){border-right:0}.v5-department-grid{grid-template-columns:1fr}.v5-department-card:nth-child(odd){border-right:0}}
@media(max-width:600px){.hero{min-height:720px}.hero h1{font-size:clamp(3.4rem,17vw,5.6rem)}.v5-trust-bar .container{grid-template-columns:1fr}.v5-trust-bar span{border-right:0}.v5-services{padding:76px 0}.v5-department-card{grid-template-columns:38px 1fr auto;padding:28px 10px}.v5-department-card p{font-size:.92rem}}

/* Product gallery price display and multi-photo lightbox */
.gallery-card[data-product-id] {
  cursor: pointer;
}
.gallery-card[data-product-id]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
.gallery-card-image-wrap {
  position: relative;
  overflow: hidden;
}
.photo-count-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.78);
  color: #fff !important;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
}
.gallery-card-price {
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 900;
  margin-top: 4px;
}
.gallery-view-button {
  justify-self: start;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.gallery-view-button:hover {
  text-decoration: underline;
}
body.product-lightbox-open {
  overflow: hidden;
}
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
}
.product-lightbox.open {
  display: grid;
}
.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(7px);
}
.product-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr);
  width: min(1100px,100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.product-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.78);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.product-lightbox-gallery {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 560px;
  padding: 26px;
  background: #ededed;
}
.product-lightbox-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 12px;
}
.product-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.74);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}
.product-lightbox-nav.previous { left: 16px; }
.product-lightbox-nav.next { right: 16px; }
.product-lightbox-counter {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}
.product-lightbox-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 16px;
}
.product-lightbox-thumbnails button {
  width: 64px;
  height: 64px;
  padding: 3px;
  border: 2px solid transparent;
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}
.product-lightbox-thumbnails button.active {
  border-color: var(--red);
}
.product-lightbox-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.product-lightbox-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 54px 42px 42px;
  color: #111;
}
.product-lightbox-copy h2 {
  margin-bottom: 14px;
}
.product-lightbox-price {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 1.8rem;
  font-weight: 900;
}
.product-lightbox-description {
  margin: 0 0 28px;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}
@media (max-width: 820px) {
  .product-lightbox {
    padding: 10px;
  }
  .product-lightbox-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
  }
  .product-lightbox-gallery {
    min-height: 360px;
    padding: 18px;
  }
  .product-lightbox-image {
    max-height: 360px;
  }
  .product-lightbox-copy {
    padding: 34px 24px 28px;
  }
}
