:root {
  --navy: #03142e;
  --red: #c61f2b;
  --blue: #244e95;
  --ink: #111827;
  --muted: #5c6470;
  --paper: #ffffff;
  --warm: #f3f0ea;
  --orange: #e8672b;
  --max-width: 1500px;
  --shadow: 0 22px 50px rgba(3, 20, 46, .2);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  color: white;
  background: var(--navy);
  text-decoration: none;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: relative;
  z-index: 20;
  min-height: 132px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 48px 18px;
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr auto;
  align-items: center;
  gap: 44px;
  background: rgba(255, 255, 255, .97);
}

.brand { width: min(100%, 320px); }

.brand img { width: 100%; height: auto; }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 68px);
}

.desktop-nav a,
.mobile-nav a {
  font-family: "Montserrat", "Sora", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a { position: relative; padding: 12px 0; }

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 5px;
  background: repeating-linear-gradient(
    to right,
    var(--navy) 0 6px,
    var(--blue) 6px 12px,
    var(--red) 12px 18px,
    #9a9a9a 18px 24px
  );
  transition: right .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.phone-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--red);
}

.button {
  min-height: 56px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  font-size: .98rem;
  font-weight: 850;
  letter-spacing: .035em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(3, 20, 46, .2);
}

.button:active { transform: scale(.96); box-shadow: none; }

.button--navy { color: white; background: var(--navy); }
.button--red { color: white; background: var(--red); }
.button--outline { color: var(--navy); border-color: var(--navy); background: white; }

.menu-toggle,
.mobile-nav { display: none; }

.hero {
  --hero-pad-x: clamp(48px, 6.2vw, 104px);
  position: relative;
  isolation: isolate;
  min-height: min(810px, calc(100vh - 132px));
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 142px) var(--hero-pad-x) 86px;
  display: grid;
  grid-template-columns: minmax(430px, .9fr) minmax(560px, 1.25fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  background: #fff;
}

.hero__copy { position: relative; z-index: 4; max-width: 620px; margin-top: -100px; }

.eyebrow {
  margin: 0;
  color: var(--navy);
  font-family: "Sora", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.7rem, 2.9vw, 3.15rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow span { display: block; color: var(--red); }
.eyebrow .eyebrow__line2 { color: var(--navy); }

.red-rule {
  width: 78px;
  height: 3px;
  margin: 34px 0 26px;
  display: block;
  background: var(--red);
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  color: #182238;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.12;
}

.hero h1 {
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

.hero__intro {
  max-width: 590px;
  margin: 22px 0 30px;
  color: #454d59;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  line-height: 1.5;
}

.hero__buttons { display: flex; flex-wrap: wrap; gap: 20px; }

.service-line {
  margin: 34px 0 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  font-size: .95rem;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.service-line i { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

.hero__art {
  position: relative;
  z-index: 3;
  min-height: 620px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: -150px;
  margin-right: calc(var(--hero-pad-x) * -1);
}

.hero__art img {
  position: relative;
  z-index: 2;
  width: min(900px, 115%);
  max-width: none;
  filter: drop-shadow(0 20px 24px rgba(3, 20, 46, .16));
}

.red-sweep {
  position: absolute;
  z-index: 1;
  width: 63%;
  height: 120px;
  left: 22%;
  bottom: -38px;
  background: var(--red);
  transform: rotate(-13deg);
  transform-origin: left center;
}

.halftone {
  position: absolute;
  z-index: 0;
  width: 170px;
  height: 120px;
  opacity: .23;
  background-image: radial-gradient(circle, var(--navy) 1.6px, transparent 1.8px);
  background-size: 15px 15px;
}

.halftone--top { top: 24px; right: 5px; }
.halftone--bottom { left: 0; bottom: 0; }

.registration-mark {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(3, 20, 46, .35);
  border-radius: 50%;
}

.registration-mark::before,
.registration-mark::after {
  content: "";
  position: absolute;
  background: rgba(3, 20, 46, .35);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 max(8vw, 32px);
  background: var(--navy);
}

.section-divider__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .18);
}

.section-divider__mark {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--red);
  border-radius: 50%;
}

.section-divider__mark::before,
.section-divider__mark::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.section-divider__mark::before { width: 26px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.section-divider__mark::after { width: 1px; height: 26px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.registration-mark::before { width: 54px; height: 1px; left: -11px; top: 16px; }
.registration-mark::after { width: 1px; height: 54px; top: -11px; left: 16px; }
.registration-mark--left { left: 22px; top: 58px; }
.registration-mark--bottom { left: 11.5%; bottom: 20px; }

.anchor-section,
.contact-section {
  padding: 110px max(8vw, 32px);
  scroll-margin-top: 20px;
}

.services-section {
  padding: 0;
  scroll-margin-top: 20px;
}

.contact-section { display: block; }

.services-section {
  color: white;
  background: var(--navy);
}

.services-section__head {
  padding: 90px max(8vw, 32px) 40px;
}

.services-section__media {
  position: relative;
}

.services-section__media img {
  display: block;
  width: 100%;
  height: auto;
}

.services-grid--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  margin-top: 0;
  padding: 0 max(4vw, 32px);
  gap: 20px;
}

.anchor-section {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}

.anchor-section h2,
.services-section h2,
.contact-section h2 { max-width: 900px; margin: 0; font-size: clamp(2.6rem, 5vw, 5rem); }
.anchor-section p:not(.eyebrow) { max-width: 760px; margin: 0; font-size: 1.25rem; line-height: 1.6; }
.eyebrow--small { margin: 0; color: var(--red); font-size: .95rem; letter-spacing: .28em; }
.anchor-section--navy { color: white; background: var(--navy); }
.anchor-section--navy h2 { color: white; }
.anchor-section--soft { background: var(--warm); }
.services-section h2 { color: white; }

.services-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.services-grid--overlay {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid--overlay .service-card h3 { font-size: 1.15rem; }
.services-grid--overlay .service-card p { font-size: .92rem; }

.service-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 16px 30px rgba(3, 20, 46, .35);
  transition: transform .28s ease, box-shadow .28s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px rgba(3, 20, 46, .5);
}

.service-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  transition: transform .4s ease;
}

.service-card:hover .service-card__image,
.service-card:focus-within .service-card__image {
  transform: scale(1.06);
}

.service-card__scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 68%;
  background: linear-gradient(to top, rgba(3, 20, 46, .95), rgba(3, 20, 46, 0));
  pointer-events: none;
}

.service-card__body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 22px 24px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  color: #fff;
  -webkit-text-stroke: 1px var(--orange);
  paint-order: stroke fill;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 1.18rem;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.contact-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: start;
}

.contact-details p { margin: 0 0 18px; font-size: 1.15rem; line-height: 1.6; }

.contact-link { text-decoration: none; }
.contact-link:hover,
.contact-link:focus-visible { text-decoration: underline; }

.contact-details .button { margin-top: 12px; }

.contact-info {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.color-bar {
  flex-shrink: 0;
  width: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .4);
}

.color-bar__swatch { flex: 1; }
.color-bar__swatch--cyan { background: #00aeef; }
.color-bar__swatch--magenta { background: #ec008c; }
.color-bar__swatch--yellow { background: #fff200; }
.color-bar__swatch--black { background: #111; }

.contact-embed {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--warm);
  border-top: 4px solid var(--red);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .3);
}

.contact-embed__icon {
  width: 52px;
  height: 52px;
  padding: 13px;
  margin-bottom: 6px;
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(3, 20, 46, .35);
}

.contact-embed__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--navy);
}

.contact-embed__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-embed__placeholder {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .anchor-section,
  .contact-section { padding: 80px 26px; }

  .services-section__head { padding: 60px 26px 32px; }

  .services-grid--overlay {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 32px 26px 0;
  }

  .services-section { padding-bottom: 60px; }
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 260px 1fr auto; gap: 24px; padding-inline: 28px; }
  .desktop-nav { gap: 24px; }
  .phone-link span:last-child { display: none; }
  .hero { grid-template-columns: minmax(390px, .9fr) minmax(440px, 1.1fr); padding-inline: 54px; }
  .hero__art img { width: 125%; }
}

@media (max-width: 860px) {
  .site-header { min-height: 94px; grid-template-columns: 1fr auto; padding: 16px 22px; }
  .brand { width: 236px; }
  .desktop-nav,
  .header-actions { display: none; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 11px;
    display: grid;
    align-content: center;
    gap: 6px;
    border: 0;
    background: var(--navy);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { height: 2px; background: white; }
  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 22px;
    display: grid;
    gap: 5px;
    color: white;
    background: var(--navy);
    box-shadow: var(--shadow);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero {
    min-height: auto;
    padding: 70px 26px 20px;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .hero__copy { max-width: 680px; margin-top: 0; }
  .hero__art { min-height: 480px; margin: 0 -12%; }
  .hero__art img { width: 112%; }
  .ink-drop { width: 48%; left: 18%; }
  .red-sweep { width: 92%; left: 15%; bottom: 0; }
}

@media (max-width: 560px) {
  .brand { width: 205px; }
  .hero { padding-top: 52px; }
  .eyebrow { font-size: clamp(1.3rem, 7.4vw, 2.1rem); }
  h1 { font-size: 2rem; }
  .hero__buttons { display: grid; }
  .button { width: 100%; }
  .service-line { gap: 12px; letter-spacing: .22em; font-size: .78rem; }
  .hero__art { min-height: 350px; margin-inline: -22%; }
  .hero__art img { width: 125%; }
  .registration-mark--left,
  .registration-mark--bottom { display: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .reveal:nth-child(5) { transition-delay: .32s; }
.services-grid .reveal:nth-child(6) { transition-delay: .4s; }

.contact-embed {
  transition: transform .28s ease, box-shadow .28s ease;
}

.contact-embed:hover,
.contact-embed:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 54px rgba(0, 0, 0, .4);
}

@media (max-width: 860px) {
  .reveal { transform: translateY(14px); transition-duration: .45s; }
  .service-card:hover,
  .service-card:focus-within { transform: none; box-shadow: 0 16px 30px rgba(3, 20, 46, .35); }
  .service-card:hover .service-card__image,
  .service-card:focus-within .service-card__image { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ---------- Inner pages ---------- */

.page-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 48px 96px;
}

.page-section--narrow { max-width: 1000px; }

.page-title {
  margin: 8px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
}

.page-lead {
  max-width: 640px;
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.services-grid--page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.page-cta { margin-top: 48px; text-align: center; }

/* ---------- Intake form ---------- */

#intake-form { display: grid; gap: 22px; }

.form-field { display: grid; gap: 6px; }

.form-field label {
  font-weight: 700;
  color: var(--navy);
}

.req { color: var(--red); }

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid #c8cdd6;
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.form-fieldset {
  border: 1px solid #c8cdd6;
  border-radius: 10px;
  padding: 18px 20px 8px;
}

.form-fieldset legend {
  padding: 0 8px;
  font-weight: 700;
  color: var(--navy);
}

.service-choice { padding: 6px 0; }

.check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
}

.check-label input { width: 18px; height: 18px; accent-color: var(--red); }

.cond-panel {
  margin: 12px 0 8px 28px;
  padding: 14px 16px;
  display: grid;
  gap: 14px;
  background: var(--warm);
  border-radius: 8px;
}

.upload-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 860px) {
  .upload-row { grid-template-columns: 3fr 2fr; align-items: start; }
}

.drop-zone {
  border: 2px dashed #aab2bf;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  transition: border-color .15s, background .15s;
}

.drop-zone:hover,
.drop-zone:focus-visible,
.drop-zone.is-dragover {
  border-color: var(--red);
  background: #fdf6f4;
}

.drop-zone__icon { width: 40px; height: 40px; margin: 0 auto 8px; color: var(--red); }

.drop-zone__lead { margin: 0 0 4px; font-weight: 700; color: var(--navy); }

.drop-zone__hint { margin: 0; font-size: .9rem; }

.drop-zone__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 6px;
}

.file-list li {
  padding: 8px 12px;
  background: var(--warm);
  border-radius: 6px;
  color: var(--ink);
  font-size: .92rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.file-remove {
  border: 0;
  background: none;
  color: var(--red);
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
}

.file-setup {
  background: var(--warm);
  border-radius: 12px;
  padding: 22px 24px;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink);
}

.file-setup h2 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
}

.file-setup p { margin: 0 0 10px; }

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 0;
  color: var(--red);
  font-weight: 700;
}

.form-submit { justify-self: start; border: 0; font: inherit; cursor: pointer; }

.form-submit:disabled { opacity: .6; cursor: default; }

.form-note { margin: 0; color: var(--muted); font-size: .9rem; }

/* Fixes: keep conditional panels hidden until checked; keep the small
   eyebrow small on narrow screens (mobile media query re-inflates .eyebrow) */
.cond-panel[hidden] { display: none; }
.eyebrow--small,
.page-section .eyebrow--small { font-size: .95rem; letter-spacing: .28em; }

/* Color-copies price badge — sits between the eyebrow and the headline,
   red rule to its left; CSS recreation of the client's circle graphic */
.badge-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 26px 0 22px;
}

/* Copy block fills the row so the rule draws across to the badge on the right */
.badge-row__copy { flex: 1 1 auto; min-width: 0; }

.badge-row .red-rule { margin: 10px 0; width: 100%; }

.badge-row__above,
.badge-row__below {
  margin: 0;
  font-family: "Sora", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--navy);
}

.badge-row__above { color: var(--red); }

.badge-row__note {
  font-style: italic;
  font-weight: 400;
  font-size: .72rem;
  color: var(--muted, #5b6474);
  white-space: nowrap;
}

.badge-row__fine {
  margin: 4px 0 0;
  font-style: italic;
  font-size: .8rem;
  color: var(--muted, #5b6474);
}

/* "We also do" strip */
.also-strip { margin-top: 44px; text-align: center; }
.also-strip--home { max-width: 1100px; margin: 56px auto 8px; padding: 0 26px; }

.also-strip__title {
  margin: 0 0 18px;
  font-family: "Sora", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--navy);
}

.also-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  justify-content: center;
  justify-items: stretch;
  gap: 12px;
}

.also-list li:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; }

.also-list li {
  padding: 8px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  background: #fff;
  text-align: center;
}

/* Printer's registration mark — reusable crosshair used as a section accent */
.printer-mark {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--red);
  border-radius: 50%;
}

.printer-mark::before,
.printer-mark::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.printer-mark::before { width: 26px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.printer-mark::after { width: 1px; height: 26px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Full-width row: line — mark — line, sat near the top of a section */
.printer-mark-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}

.printer-mark-row__line {
  flex: 1;
  height: 1px;
  background: rgba(3, 20, 46, .18);
}

.printer-mark-row__line--blue { background: rgba(255, 255, 255, .18); }

.printer-mark-row--top { margin-top: 6px; }
.printer-mark-row--blue { margin-top: 6px; }

.price-badge {
  position: relative;
  z-index: 3;
  width: 172px;
  height: 172px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding-bottom: 30px;
  transition: transform .15s ease;
  animation: badge-glow 2.2s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 103, 43, .55), 0 10px 28px rgba(16, 34, 64, .3); }
  50% { box-shadow: 0 0 32px 10px rgba(232, 103, 43, .5), 0 10px 28px rgba(16, 34, 64, .3); }
}

@media (prefers-reduced-motion: reduce) {
  .price-badge { animation: none; box-shadow: 0 0 22px 6px rgba(232, 103, 43, .45); }
}

.price-badge:hover { transform: scale(1.04); }

.price-badge__title {
  display: block;
  font-family: "Sora", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: .03em;
}

.price-badge__word { display: block; }
.price-badge__word--copies { color: #fff; }
.ink-c { color: #00aeef; }
.ink-m { color: #ec008c; }
.ink-y { color: #fff200; }
.price-badge__title b { font-weight: 800; }

.price-badge__price {
  display: block;
  margin-top: 2px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1;
  color: #fff;
}

.price-badge__price i {
  font-style: italic;
  font-weight: 600;
  font-size: .95rem;
  vertical-align: middle;
  margin-right: 2px;
}

.price-badge__cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 0 16px;
  background: var(--red);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: .85rem;
}

@media (max-width: 760px) {
  .badge-row { gap: 18px; margin: 22px 0 18px; }
  .price-badge {
    width: 148px;
    height: 148px;
    padding-bottom: 26px;
  }
  .price-badge__title { font-size: 1.15rem; }
  .price-badge__price { font-size: 1.75rem; }
  .price-badge__price i { font-size: .75rem; }
  .price-badge__cta { padding: 9px 0 12px; font-size: .7rem; }
}

/* Home page: vertical service windows + "We also do" panel side by side */
.services-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 34px;
  align-items: start;
  padding: 0 max(4vw, 32px) 90px;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.services-stack .service-card {
  display: block;
  min-height: 190px;
  text-decoration: none;
  cursor: pointer;
}

.service-card__popover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  background: rgba(3, 20, 46, .92);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}

.service-card__popover p {
  margin: 0;
  color: rgba(255, 255, 255, .95);
  font-size: 1rem;
  line-height: 1.55;
  text-shadow: none;
  max-width: 34ch;
}

.service-card__cta {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
}

.service-card:hover .service-card__popover,
.service-card:focus-visible .service-card__popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* "We also do" panel, next to the windows, popover per pill */
.also-panel { padding-top: 4px; }
.also-panel .printer-mark-row { margin-bottom: 22px; }

.also-panel__title {
  margin: 0 0 18px;
  text-align: center;
  font-family: "Sora", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--navy);
}

.tile-grid-wrap { padding: 0 max(4vw, 32px) 90px; }

/* The Location nav link jumps here; keep it clear of the sticky header */
#location { scroll-margin-top: 120px; }

/* Contact page contrast fixes (measured 8/10).
   The navy section only ever coloured h2. contact.html leads with an h1,
   so "Ready to put something great on paper?" rendered near-black on
   navy at 1.16:1, effectively invisible. */
.anchor-section--navy h1,
.contact-section h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  color: #fff;
}

/* The intake card is cream, but it sits INSIDE the navy section, so the
   section's "h2 is white and huge" rule captured its title: white on
   cream at 1.14:1, 64px. These selectors outrank it. */
.contact-section .contact-embed__title,
.anchor-section--navy .contact-embed__title {
  max-width: none;
  font-size: 1.5rem;
  color: var(--navy);
}

/* Brand red on navy measured 3.18:1, under the 4.5:1 minimum for small
   text. A lighter tint of the same red clears it without going pink. */
.anchor-section--navy .eyebrow--small,
.contact-section .eyebrow--small { color: #ff7b84; }

/* The seasonal-hours note sits under the hours, quieter than them */
.hours-note {
  display: inline-block;
  margin-top: 8px;
  font-size: .92rem;
  line-height: 1.5;
  opacity: .78;
}

/* Map under the address on the contact page. .contact-info is a flex
   row (details | CMYK bar), so the details column has to grow or the
   map collapses to its own content width. */
.contact-details { flex: 1 1 auto; min-width: 0; }

.map-block { margin-top: 26px; }

.map-frame {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 6px;
  background: #dfe4ea;
  box-shadow: 0 16px 30px rgba(3, 20, 46, .35);
}

.map-directions.button { margin-top: 14px; display: inline-block; width: auto; }

@media (max-width: 760px) {
  .map-frame { height: 230px; }
  .map-directions.button { width: 100%; text-align: center; }
}

/* On inner pages the section already provides side padding */
.page-section .tile-grid-wrap { padding: 26px 0 10px; }

.also-list--photo {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

/* Phones: two tiles across, shorter tiles — keeps the section compact */
@media (max-width: 700px) {
  .also-list--photo { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .also-list--photo .also-tile { min-height: 150px; }
  .also-tile__label { font-size: .8rem; padding: 9px 10px 11px; }
  .also-tile__popover { padding: 10px; gap: 6px; }
  .also-tile__poptitle { font-size: .95rem; }
  .also-tile__popover p { font-size: .72rem; line-height: 1.4; }
  .also-tile__cta { padding: 6px 12px; font-size: .66rem; }
}

/* The photo grid inherits nothing from the old text-pill styling */
.also-list--photo li {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.also-list--photo li:last-child:nth-child(odd) {
  grid-column: auto;
  justify-self: stretch;
}

/* Photo tiles — same visual language as the four service windows, scaled down */
.also-tile {
  position: relative;
  display: block;
  min-height: 210px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy);
  box-shadow: 0 12px 22px rgba(3, 20, 46, .3);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.also-tile:hover,
.also-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(3, 20, 46, .4);
}

.also-tile__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.also-tile:hover .also-tile__image,
.also-tile:focus-visible .also-tile__image {
  transform: scale(1.08);
}

.also-tile__scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(3, 20, 46, .92), rgba(3, 20, 46, 0));
  pointer-events: none;
}

.also-tile__label {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px 14px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.also-tile__popover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 16px;
  background: rgba(3, 20, 46, .93);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.also-tile__poptitle {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  color: #fff;
  -webkit-text-stroke: 1px var(--orange);
  paint-order: stroke fill;
}

.also-tile__popover p {
  margin: 0;
  color: rgba(255, 255, 255, .95);
  font-size: .84rem;
  line-height: 1.5;
}

.also-tile__cta {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: .72rem;
}

.also-tile:hover .also-tile__popover,
.also-tile:focus-visible .also-tile__popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .services-columns { grid-template-columns: 1fr; padding: 0 26px 70px; gap: 44px; }
}
