/* ==========================================================================
   New City Printers — style.css
   Premium studio dark theme with CMYK accents (Yellow/Cyan/Magenta)
   ========================================================================== */

/* =========================
   Tokens
   ========================= */
:root{
  --bg: #0b0f14;
  --bg2:#0f1520;

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.12);

  --yellow:#ffea00;   /* CTA */
  --cyan:  #00b7ff;   /* Accent */
  --magenta:#ff008c;  /* Micro-highlight */

  --card: rgba(255,255,255,.04);
  --card2:rgba(255,255,255,.06);

  --radius: 18px;
  --shadow: 0 16px 50px rgba(0,0,0,.55);
  --max: 1100px;
}

/* =========================
   Base / Reset
   ========================= */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 700px at 15% -10%, rgba(0,183,255,.10), transparent 60%),
    radial-gradient(900px 700px at 85% 0%, rgba(255,234,0,.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 35%),
    var(--bg);
  line-height: 1.55;
}

a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   Typography
   ========================= */
h1,h2,h3{ line-height: 1.15; margin: 0 0 12px; }
h1{ font-size: clamp(30px, 4vw, 46px); }
h2{ font-size: clamp(22px, 2.8vw, 34px); }
h3{ font-size: 18px; }

.lead{ font-size: 18px; color: var(--muted); margin: 0 0 20px; }
.small{ font-size: 14px; }
.muted{ color: var(--muted); }

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  transition: transform .10s ease, background .2s ease, border-color .2s ease, filter .2s ease;
  font-weight: 650;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
}

.btn--primary{
  background: var(--yellow);
  color: #000;
  border: none;
  font-weight: 800;
}

.btn--primary:hover{
  filter: brightness(.95);
}

.btn--ghost{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
}

.btn--ghost:hover{
  border-color: rgba(0,183,255,.45);
}

.btn--full{ width: 100%; }

/* =========================
   Sections
   ========================= */
.section{
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section--alt{
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--line);
}

.section__head{ margin-bottom: 20px; }
.section__foot{ margin-top: 18px; }

.section__head--split{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 16px;
}

.section__head h2{
  position: relative;
  display: inline-block;
}

.section__head h2::after{
  content:"";
  display:block;
  height: 4px;
  width: 60%;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  border-radius: 4px;
}

/* =========================
   Glossy Photo Treatment
   ========================= */
.gphoto{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
  background: rgba(255,255,255,.03);
}

.gphoto img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: contrast(1.15) saturate(1.12);
  transform: scale(1.02);
}

.gphoto::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 40%);
  opacity: .35;
}

/* =========================
   Header / Nav
   ========================= */
/* Keep header height stable to avoid any sticky-jitter */
.siteHeader{
  position: sticky;
  top: 0;
  z-index: 100;
  height: 92px;
  background: rgba(11,15,20,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.siteHeader__inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a{
  color: rgba(255,255,255,.78);
  font-weight: 650;
}

.nav a:hover{ color: var(--cyan); }

/* Nav: Pay pill */
.nav__pay{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
}

.nav__pay:hover{
  border-color: rgba(0,183,255,.45);
  color: var(--cyan);
}

/* =========================
   Brand Mark (layered logo)
   ========================= */
.brandMark{
  display:flex;
  flex-direction:column;
  gap: 6px;
  text-decoration:none;
  align-items:flex-start;
  min-width: 200px;
}

.brandMark__tag{
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--muted);
  transition: opacity .25s ease, transform .25s ease;
}

/* Keep this sane. The JS does the fancy part. */
.brandMark__stack{
  position: relative;
  width: clamp(180px, 22vw, 360px);
  height: 54px;
  overflow: visible;
}

.brandMark__stack img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: contain;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

/* Default “top of page” pose; JS will take over on scroll */
.brandMark__city{
  opacity: 1;
  transform: translateY(-10px) scale(1.12);
}

.brandMark__text{
  opacity: 1;
  transform: translateY(4px) scale(1);
  backface-visibility: hidden;
}

/* =========================
   Hero
   ========================= */
.hero{ padding: 64px 0 32px; }

.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

/* Right column becomes a 2-row grid:
   row 1 = photo stack
   row 2 = quote panel */
.hero__right{
  display: grid;
  grid-template-rows: 240px auto;
  gap: 16px;
  align-content: start;
}

/* Quote panel */
.hero__panelBox{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.heroPanel__actions{
  display:grid;
  gap: 10px;
  margin: 14px 0 12px;
}

.heroPanel__details p{
  margin: 6px 0 0;
}

.heroPanel__checklist{
  margin-top: 8px;
}

.heroPanel__checklist p{
  margin: 6px 0 0;
}

/* Mini strip under hero copy (2x2) */
.miniStrip{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
  opacity: .95;
}
.miniStrip__tile{ height: 185px; }

@media (max-width: 900px){
  /* On mobile, 4 across looks fine */
  .miniStrip{ grid-template-columns: repeat(4, 1fr); }
  .miniStrip__tile{ height: 62px; }
}

/* Photo stack (bigger + less “thin”) */
.photoStack{
  position: relative;
  height: 240px;
}

.photoStack__img{
  position:absolute;
  margin:0;
}

/* Larger primary tile */
.photoStack__img--a{
  width: 72%;
  height: 100%;
  left: 0;
  top: 0;
}

/* Two supporting tiles */
.photoStack__img--b{
  width: 46%;
  height: 64%;
  right: 0;
  top: 0;
  border-color: rgba(0,183,255,.28);
}

.photoStack__img--c{
  width: 46%;
  height: 64%;
  right: 8%;
  bottom: -10%;
  border-color: rgba(255,234,0,.20);
}

/* Nudge “fill” a touch for images with whitespace */
.photoStack .gphoto img{
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 900px){
  .hero__grid{
    grid-template-columns: 1fr;
  }

  .hero__right{
    grid-template-rows: 220px auto;
  }

  .photoStack{
    height: 220px;
  }

  .miniStrip{
    grid-template-columns: repeat(2, 1fr);
  }
  .miniStrip__tile{ height: 64px; }
}

/* =========================
   Grid / Cards
   ========================= */
.grid{
  display:grid;
  gap: 16px;
}

.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }

.card{
  display:block;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  position: relative;
  overflow:hidden;
  transition: transform .12s ease, border-color .2s ease;
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(0,183,255,.40);
}

.card::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(0,183,255,0);
  transition: box-shadow .25s ease;
}

.card:hover::after{
  box-shadow: inset 0 0 0 1px rgba(0,183,255,.22);
}

.card p{ margin: 8px 0 0; color: var(--muted); }

/* Card corner thumb */
.card__thumb{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 66px;
  height: 66px;
  border-radius: 14px;
  opacity: .95;
}

.card h3, .card p{
  max-width: calc(100% - 92px);
}

/* =========================
   Steps
   ========================= */
.step{
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}

.step__num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 800;
  background: rgba(0,183,255,.14);
  border: 1px solid rgba(0,183,255,.28);
  margin-bottom: 10px;
}

/* Badge photo in split heading */
.badgePhoto{
  width: 120px;
  height: 70px;
}

/* =========================
   Gallery
   ========================= */
.gallery{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery__item{
  border-radius: 14px;
  overflow:hidden;
}
.gallery__item.gphoto{ aspect-ratio: 1 / 1; }

/* =========================
   Film Strip / Logo Marquee (CSS)
   ========================= */
.filmStrip{
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.015);
}

/* viewport */
.filmMarquee{
  overflow:hidden;
  position: relative;
}

/* strip track */
.filmMarquee__track{
  display:flex;
  align-items:center;
  gap: 22px;
  width: max-content;
  will-change: transform;
  animation: filmMarqueeLTR 40s linear infinite;
  transform: translate3d(0,0,0);
}

/* pause on hover */
.filmMarquee:hover .filmMarquee__track{
  animation-play-state: paused;
}

/* items: NO border/frame, NO crop */
.filmMarquee__item{
  flex: 0 0 auto;
  height: 56px;
  width: 180px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  opacity: .92;
}

.filmMarquee__item img{
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display:block;
  filter: contrast(1.08) saturate(1.06);
}

/* Left-to-right loop:
   You duplicated the set in HTML, so -50% -> 0% loops seamlessly */
@keyframes filmMarqueeLTR{
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0%,   0, 0); }
}

/* =========================
   CTA
   ========================= */
.cta{
  padding: 56px 0;
  background:
    radial-gradient(900px 700px at 10% 0%, rgba(0,183,255,.10), transparent 60%),
    radial-gradient(900px 700px at 90% 0%, rgba(255,0,140,.08), transparent 60%),
    rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.10);
}

.cta__grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Prices
   ========================= */
.priceBlock{ margin-top: 26px; }
.priceBlock__head{ display:flex; justify-content:space-between; align-items:end; gap:16px; flex-wrap:wrap; }
.priceBlock__title{ margin: 0 0 10px; }
.priceTableWrap{ padding: 18px; }

.priceTable{ width: 100%; border-collapse: collapse; }
.priceTable th, .priceTable td{
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  vertical-align: top;
}
.priceTable th{ text-align:left; font-weight: 800; color: rgba(255,255,255,.86); }
.colLabel{ color: rgba(255,255,255,.86); }
.colPrice{ text-align:left; white-space: nowrap; }

.vatToggle{ padding: 14px 16px; min-width: 260px; }
.vatToggle__row{ display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.vatToggle__label{ display:flex; flex-direction:column; gap:4px; }
.vatToggle__note{ margin: 10px 0 0; }

.vatToggle__switch{
  display:flex;
  gap: 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px;
}

.vatBtn{
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.78);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.vatBtn.is-active{ background: var(--yellow); color: #000; }
.vatBtn:hover{ border-color: rgba(0,183,255,.35); }

/* =========================
   Pay Portal
   ========================= */

.payCard{
  padding: 18px;
}

.payGrid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: start;
}

.payForm{
  display: grid;
  gap: 12px;
}

.payLabel{
  display: grid;
  gap: 6px;
}

.payLabel span{
  font-weight: 700;
  color: rgba(255,255,255,.86);
}

.payInput{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  outline: none;
}

.payInput::placeholder{
  color: rgba(255,255,255,.45);
}

.payInput:focus{
  border-color: rgba(0,183,255,.55);
  box-shadow: 0 0 0 4px rgba(0,183,255,.12);
}

.payHint{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.payActions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.paySide{
  padding: 18px;
}

.paySide h3{
  margin-top: 0;
}

.payList{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.payLock{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  margin-top: 14px;
}

.payLock__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,183,255,.12);
}

@media (max-width: 900px){
  .payGrid{ grid-template-columns: 1fr; }
}

/* Header subline (Pay page only) */
.siteHeader__sub{
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(11,15,20,.55);
}

.siteHeader__subInner{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding: 6px 0;
}

.payBadge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.80);
  font-size: 12px;
  letter-spacing: .02em;
}

.payBadge__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,183,255,.12);
}

/* =========================
   Footer
   ========================= */
.siteFooter{
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.siteFooter__grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.siteFooter__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(3, 1fr); }

  .photoStack{ height: 200px; }
  .miniStrip{ grid-template-columns: repeat(2, 1fr); }

  .badgePhoto{ display:none; }
  .brandMark__tag{ display:none; }

  .siteHeader{ height: auto; }
  .siteHeader__inner{ padding: 14px 0; }
}