/* PRECISION Prints & Signage — light editorial print-shop system.
   Mobile-first. No web fonts, no gradients, no shadows (except the WhatsApp FAB).
   Sharp corners everywhere except circular photo crops echoing the logo ring. */

:root {
  --paper: #fcfbf9;
  --cream: #f5f0e8;
  --ink: #0d0d0d;
  --red: #e11d2e;
  --grey: #55534e;
  --hair: #e4dfd5;
  --wa: #128c7e;
  --dark-body: #b8b6b0;
  --dark-mute: #8f8d88;
  --dark-rule: #262626;
  --wrap: 1100px;
  --gut: 20px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 700;
}

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

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 100;
  font-weight: 600;
}
.skip:focus {
  left: 0;
}

/* --- type helpers ------------------------------------------------------- */
/* Red micro-labels are caps, >=600 weight, >=11px — never red at body size. */
.micro {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.micro-red {
  color: var(--red);
}
.lede {
  font-size: 17px;
  color: var(--grey);
  max-width: 34em;
}
.body {
  color: var(--grey);
  font-size: 15.5px;
  max-width: 36em;
}
.body + .body {
  margin-top: 14px;
}
.underline-red {
  border-bottom: 6px solid var(--red);
}

/* --- buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 15px 22px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
}
.btn-wa {
  background: var(--wa);
  color: #fff;
}
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost-light {
  border-color: var(--paper);
  color: var(--paper);
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- header ------------------------------------------------------------- */
.site-header {
  border-bottom: 1px solid var(--hair);
  background: var(--paper);
}
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  gap: 16px;
}
.logo img {
  width: 190px;
  height: auto;
}
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before {
  position: absolute;
  top: -7px;
}
.nav-toggle span::after {
  position: absolute;
  top: 7px;
}

.site-nav {
  display: none;
  border-top: 1px solid var(--hair);
  background: var(--paper);
}
.site-nav.is-open {
  display: block;
}
.site-nav ul {
  list-style: none;
  padding: 6px var(--gut) 14px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.site-nav a {
  display: block;
  padding: 12px 0;
  min-height: 44px;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid var(--hair);
}
.site-nav li:last-child a {
  border-bottom: 0;
}

/* --- hero --------------------------------------------------------------- */
.hero {
  background: var(--cream);
  padding: 48px 0 56px;
}
.hero .wrap {
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  margin: 0 0 18px;
}
.hero h1 .eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  line-height: 1.5;
  margin-bottom: 14px;
}
.hero h1 .display {
  display: block;
  font-size: clamp(2.3rem, 9vw, 4.3rem);
  line-height: 1.04;
}
.hero .lede {
  margin-bottom: 26px;
}

/* circular photo crop with the red dial-needle tick at 1 o'clock */
.dial {
  position: relative;
  width: min(78vw, 380px);
  margin: 0 auto;
}
.dial img {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--ink);
  width: 100%;
}
.dial::after {
  content: "";
  position: absolute;
  top: 7%;
  right: 9%;
  width: 9px;
  height: 34px;
  background: var(--red);
  transform: rotate(38deg);
}

/* --- process + trust strips --------------------------------------------- */
.procline {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 14px 0;
  text-align: center;
}
.trust {
  display: flex;
  justify-content: center;
  gap: 18px 34px;
  flex-wrap: wrap;
  padding: 24px var(--gut);
  font-size: 13.5px;
  color: var(--grey);
  max-width: var(--wrap);
  margin: 0 auto;
}
.trust b {
  color: var(--ink);
  font-weight: 600;
}

/* --- sections ----------------------------------------------------------- */
.sec {
  padding: 56px 0;
}
.sec-cream {
  background: var(--cream);
}
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sec-head h2,
.sec h2 {
  font-size: clamp(1.6rem, 5.4vw, 2.3rem);
}
.sec-head .micro {
  flex: 0 0 auto;
}

/* --- service index (numbered rows, circular thumbs) --------------------- */
.svc-index {
  border-top: 1px solid var(--hair);
}
.svc-row {
  display: grid;
  grid-template-columns: 34px 1fr 76px;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  text-decoration: none;
  color: inherit;
}
.svc-row .no {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}
.svc-row h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.svc-row p {
  font-size: 13.5px;
  color: var(--grey);
  margin-top: 4px;
  line-height: 1.45;
}
.svc-row img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink);
}

/* --- dark band (used exactly twice: night section + footer) -------------- */
.night {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0;
}
.night .micro {
  color: var(--red);
}
.night h2 {
  margin: 10px 0 8px;
}
.night .lead {
  color: var(--dark-body);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 38em;
}
.night-grid {
  display: grid;
  gap: 16px;
}
.night-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.night-grid figcaption {
  font-size: 12px;
  color: var(--dark-mute);
  padding-top: 8px;
}

/* --- craft (red dial-tick bullets) -------------------------------------- */
.craft .wrap {
  display: grid;
  gap: 32px;
  align-items: center;
}
.craft > .wrap > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.craft h2 {
  margin-bottom: 14px;
}
.tick-list {
  list-style: none;
}
.tick-list li {
  color: var(--grey);
  font-size: 15.5px;
  margin-bottom: 14px;
  max-width: 36em;
}
.tick {
  display: inline-block;
  width: 8px;
  height: 20px;
  background: var(--red);
  transform: rotate(38deg);
  margin-right: 14px;
  vertical-align: -4px;
}

/* --- about / story ------------------------------------------------------ */
.about .wrap {
  display: grid;
  gap: 26px;
  align-items: center;
}
.about-portrait {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--ink);
}
.about p {
  color: var(--grey);
  font-size: 15.5px;
  max-width: 44em;
}
.about b {
  color: var(--ink);
}
.about .story {
  margin-top: 10px;
}
.story-cta {
  margin-top: 18px;
}

/* --- galleries ---------------------------------------------------------- */
.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.gallery figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.gallery figcaption {
  font-size: 12.5px;
  color: var(--grey);
  padding-top: 7px;
  line-height: 1.4;
}
.gallery-wide {
  grid-template-columns: 1fr;
}

/* --- editorial page furniture ------------------------------------------- */
.page-head {
  background: var(--cream);
  padding: 40px 0 44px;
}
.page-head h1 {
  font-size: clamp(2rem, 7.5vw, 3.2rem);
  margin-top: 12px;
}
.page-head .lede {
  margin-top: 18px;
}
.breadcrumb {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.04em;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.prose h2 {
  font-size: clamp(1.4rem, 4.6vw, 1.9rem);
  margin: 34px 0 12px;
}
.prose h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 22px 0 6px;
}
.prose p {
  color: var(--grey);
  font-size: 15.5px;
  max-width: 38em;
  margin-bottom: 14px;
}
.prose p.answer-first {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  max-width: 34em;
}
.prose ol,
.prose ul {
  color: var(--grey);
  font-size: 15.5px;
  max-width: 38em;
  margin: 0 0 16px 20px;
}
.prose li {
  margin-bottom: 8px;
}
.prose b,
.prose strong {
  color: var(--ink);
}

.spec {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 20px 0;
  margin: 28px 0;
  display: grid;
  gap: 16px;
}
.spec dt {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 4px;
}
.spec dd {
  font-size: 14.5px;
  color: var(--grey);
}

.faq-block {
  border-top: 1px solid var(--hair);
  padding-top: 22px;
  margin-top: 32px;
}
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.faq-item h2,
.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.faq-item p {
  color: var(--grey);
  font-size: 15.5px;
  max-width: 40em;
}

.cta-band {
  background: var(--cream);
  padding: 40px 0;
  margin-top: 48px;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin-bottom: 16px;
  max-width: 16em;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 22px;
  margin: 28px 0;
}
.contact-list dt,
.contact-list .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 6px;
}
.contact-list a {
  font-size: 16px;
}
.contact-list p {
  color: var(--grey);
  font-size: 15px;
}

/* --- email reveal ------------------------------------------------------- */
#ts-slot:not(:empty) {
  min-height: 65px;
  margin-top: 14px;
}
.reveal-note {
  font-size: 13.5px;
  color: var(--grey);
  margin-top: 8px;
}

/* --- footer ------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 52px 0 36px;
  margin-top: 0;
}
.site-footer .close-line {
  font-size: clamp(1.6rem, 6.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  max-width: 16em;
  margin-bottom: 28px;
}
.site-footer .close-line span {
  color: var(--red);
}
.foot-logo {
  width: 200px;
  margin-bottom: 26px;
}
.foot-grid {
  display: grid;
  gap: 26px;
  font-size: 14px;
  color: var(--dark-body);
  margin-bottom: 30px;
}
.foot-grid h2 {
  color: var(--paper);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.foot-grid a {
  color: var(--dark-body);
}
.foot-grid li {
  list-style: none;
  margin-bottom: 4px;
}
.legal {
  border-top: 1px solid var(--dark-rule);
  padding-top: 18px;
  font-size: 12px;
  color: var(--dark-mute);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- WhatsApp FAB ------------------------------------------------------- */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}
.fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.fab svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- desktop ------------------------------------------------------------ */
@media (min-width: 840px) {
  .sec {
    padding: 72px 0;
  }
  .hero {
    padding: 64px 0 72px;
  }
  .hero .wrap {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
  }
  .nav-toggle {
    display: none;
  }
  .site-nav,
  .site-nav.is-open {
    display: block;
    border-top: 0;
    background: none;
  }
  .site-header .wrap {
    flex-wrap: nowrap;
  }
  .site-nav ul {
    display: flex;
    gap: 26px;
    padding: 0;
  }
  .site-nav a {
    border-bottom: 0;
    padding: 8px 0;
    font-size: 13px;
    color: var(--grey);
  }
  .night-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .craft .wrap {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
  }
  .about .wrap {
    grid-template-columns: auto 1fr;
    gap: 36px;
  }
  .foot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .spec {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .logo img {
    width: 210px;
  }
}
