/* =========================================================
   AdsPrintz — printing solutions (adsprintz.com)
   Print-production stylesheet: paper-white ground, ink-black
   panels with a halftone dot texture, a single registration
   mark as the brand mark, CMYK proof dots as a color flourish,
   and crop marks framing the hero image.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&family=Roboto+Mono:wght@400;500;700&display=swap');

:root{
  --paper: #FAF8F3;   /* page ground              */
  --card:  #FFFFFF;   /* card surface              */
  --ink:   #17140F;   /* registration black        */
  --stone: #6B675C;
  --line:  #E4DFD1;

  --cyan:    #00AEEF;
  --magenta: #EC008C;
  --yellow:  #FFD400;

  --on-dark: #F7F4EC;

  --display: 'Anton', sans-serif;
  --body:    'Inter', sans-serif;
  --mono:    'Roboto Mono', monospace;

  --max: 1160px;

  /* halftone dot screen, tiled on dark panels */
  --halftone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22'%3E%3Ccircle cx='11' cy='11' r='2.6' fill='%23F7F4EC' fill-opacity='0.12'/%3E%3C/svg%3E");
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

img{ display: block; max-width: 100%; }

::selection{ background: var(--yellow); color: var(--ink); }

:focus-visible{
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* -------------------- shared type -------------------- */
.kicker{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin: 0 0 16px;
}

.kicker-light{ color: var(--on-dark); }

.section-title{
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0 0 18px;
  max-width: 20ch;
}

.accent{
  color: var(--magenta);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* -------------------- CMYK proof dots -------------------- */
.cmyk-dots{
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.cmyk-dots span{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: -6px;
  mix-blend-mode: multiply;
}

.cmyk-dots span:first-child{ margin-left: 0; }

.dot-c{ background: var(--cyan); }
.dot-m{ background: var(--magenta); }
.dot-y{ background: var(--yellow); }

.cmyk-dots-sm span{ width: 13px; height: 13px; margin-left: -5px; mix-blend-mode: screen; }

/* -------------------- buttons -------------------- */
.btn{
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 3px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover{ transform: translateY(-2px); }

.btn-solid{
  background: var(--ink);
  color: var(--paper);
}

.btn-solid:hover{ background: #322C21; }

.btn-ghost{
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-ghost:hover{ background: var(--card); }

.btn-light{
  background: var(--on-dark);
  color: var(--ink);
  font-family: var(--mono);
}

.btn-light:hover{ background: #fff; }

.btn-lg{ padding: 16px 32px; font-size: 1rem; }

.btn-block{ display: block; text-align: center; }

/* -------------------- brand mark -------------------- */
.reg-mark{
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  position: relative;
}

.reg-mark::before{
  content: '';
  position: absolute;
  top: 50%; left: -3px; right: -3px;
  height: 2px;
  background: var(--ink);
  transform: translateY(-50%);
}

.reg-mark::after{
  content: '';
  position: absolute;
  left: 50%; top: -3px; bottom: -3px;
  width: 2px;
  background: var(--ink);
  transform: translateX(-50%);
}

/* -------------------- topbar -------------------- */
.topbar{ padding: 20px 0; }

.topbar-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.wordmark{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}

.topbar-domain{
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--stone);
}

/* -------------------- hero -------------------- */
.hero{ padding: 40px 0 74px; }

.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 960px){
  .hero-grid{ grid-template-columns: 1.05fr 0.95fr; }
}

.hero-copy h1{
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 4.8vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin: 0 0 20px;
}

.lede{
  font-size: 1.08rem;
  color: var(--stone);
  max-width: 50ch;
  margin: 0 0 28px;
}

.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.format-chips{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.chip{
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 6px 14px;
}

.chip-sm{ font-size: 0.72rem; padding: 5px 11px; background: var(--paper); }

.hero-media{
  margin: 14px;
  position: relative;
}

.hero-media img{
  width: 100%;
  height: 440px;
  object-fit: cover;
}

@media (max-width: 560px){
  .hero-media img{ height: 290px; }
}

.crop{
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.crop-tl{ top: -14px; left: -14px; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.crop-tr{ top: -14px; right: -14px; border-top: 2px solid var(--ink); border-right: 2px solid var(--ink); }
.crop-bl{ bottom: -14px; left: -14px; border-bottom: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.crop-br{ bottom: -14px; right: -14px; border-bottom: 2px solid var(--ink); border-right: 2px solid var(--ink); }

.hero-badge{
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translate(-50%, 100%);
  background: var(--ink);
  color: var(--on-dark);
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 0.78rem;
  white-space: nowrap;
}

.hero-badge-num{
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--yellow);
  margin-right: 6px;
}

/* -------------------- stat band -------------------- */
.statband{
  background: var(--ink) var(--halftone);
  background-size: 22px 22px;
  color: var(--on-dark);
  padding: 60px 0 52px;
}

.statband-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 28px;
}

@media (min-width: 900px){
  .statband-grid{ grid-template-columns: repeat(4, 1fr); }
}

.stat-value{
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label{
  display: block;
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 24ch;
}

/* -------------------- services -------------------- */
.services{ padding: 84px 0 70px; }

.service-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 40px;
}

@media (min-width: 760px){
  .service-grid{ grid-template-columns: 1fr 1fr; }
}

.service-card{
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px 26px 24px;
}

.service-card h3{
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.005em;
  margin: 0 0 10px;
}

.service-card p{
  margin: 0 0 18px;
  color: var(--stone);
  font-size: 0.95rem;
}

.tag-row{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

/* -------------------- process -------------------- */
.process{
  background: var(--ink) var(--halftone);
  background-size: 22px 22px;
  color: var(--on-dark);
  padding: 90px 0;
}

.process-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 900px){
  .process-grid{ grid-template-columns: 1.15fr 0.85fr; }
}

.process .section-title{ color: var(--on-dark); }

.step-list{
  list-style: none;
  counter-reset: pstep;
  margin: 26px 0 0;
  padding: 0;
}

.step-list li{
  counter-increment: pstep;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(247, 244, 236, 0.16);
}

.step-list li::before{
  content: counter(pstep);
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
  background: var(--on-dark);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
}

.step-name{
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  grid-column: 2;
}

.step-text{
  grid-column: 2;
  font-size: 0.94rem;
  opacity: 0.85;
}

.process .photo{
  margin: 0;
  background: var(--on-dark);
  padding: 10px 10px 0;
}

.process .photo img{
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.process .photo figcaption{
  padding: 12px 4px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.7;
}

@media (max-width: 560px){
  .process .photo img{ height: 240px; }
}

/* -------------------- pricing -------------------- */
.pricing{ padding: 84px 0 60px; }

.plan-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 880px){
  .plan-grid{ grid-template-columns: repeat(3, 1fr); }
}

.plan-card{
  background: var(--card);
  border: 1px solid var(--line);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.plan-featured{
  border: 2px solid var(--ink);
}

.plan-card h3{
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 0 0 12px;
}

.plan-price{
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--magenta);
  margin: 0 0 18px;
  line-height: 1.1;
}

.plan-unit{
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--stone);
  font-family: var(--mono);
  text-transform: none;
}

.plan-features{
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  flex-grow: 1;
}

.plan-features li{
  font-size: 0.93rem;
  color: var(--stone);
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: 1px dashed var(--line);
}

.plan-features li::before{
  content: '\2713';
  position: absolute;
  left: 2px;
  color: var(--magenta);
  font-weight: 700;
}

/* -------------------- cta -------------------- */
.cta{ padding: 40px 0 90px; }

.cta-inner{
  background: var(--ink) var(--halftone);
  background-size: 22px 22px;
  color: var(--on-dark);
  padding: 64px 34px;
  text-align: center;
}

.cta-inner .kicker{ justify-content: center; }

.cta-inner h2{
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.7vw, 2.6rem);
  margin: 0 0 16px;
}

.cta-inner p{
  opacity: 0.85;
  max-width: 54ch;
  margin: 0 auto 30px;
}

/* -------------------- footer -------------------- */
.footer{
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--stone);
}

.wordmark-footer{ font-size: 1.15rem; }
