/* ============================================================
   PAGE — SERVICES (css/page-services.css)
   The packages page: what-sets-us-apart cards, standard-stock
   strip, tier notes, the develop-order payment ledger, booking
   date stamps, blog clippings.
   Loads after css/site.css. Page-only styles — nothing shared.
   ============================================================ */

/* ---------- what sets us apart — process-report cards ---------- */
.apart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.apart-card {
  position: relative; /* anchors the .corner-stamp overhang */
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 1.75rem 1.4rem 1.4rem;
}
.apart-card h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 1.35rem; line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
}
.apart-card p {
  font-family: var(--body);
  font-size: 0.97rem; line-height: 1.65;
  color: var(--bone-dim);
  margin: 0;
}

/* ---------- standard stock — loaded in every can ---------- */
.stock-strip {
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(242, 193, 78, 0.05), transparent 40%),
    var(--ink-2);
  padding: 1.5rem 1.6rem 1.4rem;
  margin-bottom: 2.5rem;
}
.stock-strip-h {
  font-family: var(--mono); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--kodak);
  margin: 0 0 0.9rem;
}
.stock-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1.5rem;
}
.stock-list li {
  display: flex; gap: 0.7rem; align-items: baseline;
  font-size: 0.95rem;
}
.stock-list .tick {
  color: var(--safelight); font-weight: 700;
  transform: rotate(4deg); display: inline-block;
}

/* the circled-price sizing now lives in site.css so the city pages and the
   landing pages get the same ring. Nothing page-specific left here. */

/* closing note inside each tier card, above the button */
.tier-note {
  font-family: var(--body); font-style: italic;
  font-size: 0.92rem; line-height: 1.6;
  color: var(--bone-dim);
  border-top: 1px dashed rgba(232, 160, 76, 0.3);
  padding-top: 1rem;
  margin: 0 0 1.5rem;
}

/* ---------- special order — taped-in memo ---------- */
.order-note {
  position: relative;
  max-width: 46rem;
  background: var(--ink-2);
  border: 1px dashed rgba(232, 160, 76, 0.4);
  padding: 2.2rem 1.8rem 1.8rem;
}
.order-note::before { /* splicing tape */
  content: "";
  position: absolute; top: -0.7rem; left: 50%;
  width: 6.5rem; height: 1.5rem;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(232, 160, 76, 0.28);
  border-left: 1px dashed rgba(20, 16, 8, 0.5);
  border-right: 1px dashed rgba(20, 16, 8, 0.5);
}
.order-note h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  text-transform: uppercase; line-height: 1.1;
  margin: 0 0 0.8rem;
}
.order-note p {
  font-family: var(--body);
  font-size: 0.98rem; line-height: 1.65;
  color: var(--bone-dim);
}
.order-note .btn { margin-top: 0.4rem; }
/* In the order-desk block the footnote lines up with the taped note and the
   films link above and below it, rather than the narrower reading measure it
   uses under the tier grid. */
.section-tight .tier-foot { max-width: 46rem; }
.order-films {
  max-width: 46rem;
  margin-top: 1.4rem;
  font-size: 0.92rem;
  color: var(--bone-dim);
}

/* ---------- the develop-order ledger ---------- */
.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.ledger {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--amber);
  padding: 1.3rem 1.2rem 1.1rem;
  font-family: var(--mono);
}
.ledger-pick { border-top-color: var(--safelight); }
.ledger-h {
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--kodak);
  margin: 0 0 0.9rem;
  display: flex; justify-content: space-between; gap: 0.5rem;
}
.ledger-h .ledger-can { color: var(--bone-dim); letter-spacing: 0.12em; }
.ledger-row {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--bone-dim);
  margin: 0 0 0.45rem;
}
.ledger-row .l-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(201, 183, 149, 0.35);
  transform: translateY(-4px);
  min-width: 1rem;
}
.ledger-row .l-val { color: var(--bone); white-space: nowrap; }
.ledger-total {
  border-top: 1px solid var(--line);
  padding-top: 0.55rem; margin-top: 0.65rem;
  font-weight: 700; font-size: 0.95rem;
  color: var(--bone);
}
.ledger-total .l-val { color: var(--kodak); font-size: 1.15rem; }
.ledger-foot { margin-top: 2rem; font-size: 0.88rem; color: var(--bone-dim); }

.ledger-stamp {
  display: inline-block;
  font-family: var(--mono); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--safelight);
  border: 2px solid rgba(194, 47, 62, 0.65);
  border-radius: 3px;
  padding: 0.3rem 0.9rem;
  transform: rotate(-3deg);
  margin-top: 1.75rem;
}

/* ---------- booking calendar — film date stamps ---------- */
.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.book-year {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem 1.3rem;
  position: relative;
}
.book-year-label {
  font-family: var(--mono); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0 0 0.35rem;
}
.book-year-num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1;
  color: var(--kodak);
  text-shadow: 0 0 18px rgba(242, 193, 78, 0.25);
  margin: 0 0 0.6rem;
}
.book-year-status {
  display: flex; align-items: baseline; gap: 0.55rem;
  font-family: var(--mono); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 0.4rem;
}
.book-year-note {
  font-family: var(--body); font-size: 0.9rem; line-height: 1.55;
  color: var(--bone-dim);
  margin: 0;
}
.book-lede { max-width: 52em; }
.ledger-foot { max-width: 52em; }

/* ---------- from the blog — press clippings ---------- */
.clip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
  max-width: var(--measure);
}
.clip {
  display: block;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem 1.3rem;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.clip:hover { border-color: var(--amber); transform: translateY(-3px); }
.clip-kicker {
  font-family: var(--mono); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--safelight);
  margin: 0 0 0.7rem;
}
.clip h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 1.4rem; line-height: 1.1;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 0.5rem;
}
.clip p {
  font-family: var(--body); font-size: 0.93rem; line-height: 1.6;
  color: var(--bone-dim);
  margin: 0 0 0.9rem;
}
.clip-more {
  font-family: var(--mono); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
}
.clip:hover .clip-more { color: var(--kodak); }

/* FAQ closer line */
.faq-outro { margin-top: 2rem; color: var(--bone-dim); }

.tier-foot {
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.82rem; line-height: 1.7;
  color: var(--bone-dim);
  max-width: var(--measure);
}

/* ---------- how much film: roll options ---------- */
.film-lede { max-width: var(--measure); color: var(--bone-dim); }
.roll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.roll-opt {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  padding: 1.4rem 1.3rem 1.2rem;
}
.roll-opt--pick { border-left-color: var(--safelight); }
.roll-count {
  font-family: var(--mono);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 0.5rem;
}
.roll-price {
  font-family: var(--display);
  font-size: 2rem; line-height: 1;
  color: var(--kodak);
  margin-bottom: 0.2rem;
}
.roll-sub {
  font-family: var(--mono);
  font-size: 0.78rem; color: var(--bone-dim);
  margin-bottom: 0.9rem;
}
.roll-opt > p:last-child { margin-bottom: 0; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .apart-grid, .ledger-grid, .book-grid, .roll-grid { grid-template-columns: 1fr; max-width: 30rem; margin-left: auto; margin-right: auto; }
  .clip-grid { grid-template-columns: 1fr; }
  .stock-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stock-list { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .clip { transition: none; }
  .clip:hover { transform: none; }
}
