/* =========================================================
   KAMINI — Fine Jewellery
   Design tokens: true black & white, the brand's own primary
   palette — matched to the real print catalogue's pure
   black-on-white language. A single quiet warm-grey accent
   is used sparingly, never as a "colour". The jewellery's own
   colourstones supply the only real colour in the experience.
   Signature motif: a single clipped "facet" corner on every
   image frame, now a crisp black picture-frame line, echoing
   a gem cut. Used consistently, sparingly.
   ========================================================= */

:root {
  /* --- Color --- */
  --ink: #0d0d0d;              /* primary black — text, buttons, dark sections */
  --ink-soft: #4a4642;         /* warm charcoal — secondary text, quiet labels */
  --ivory: #faf8f5;            /* page background — soft warm off-white, not stark */
  --paper: #ffffff;            /* card / raised surface — pure white */
  --accent: #8c8578;           /* quiet warm graphite — used sparingly, not a "colour" */
  --accent-light: #d6d0c4;     /* lighter tint of the accent, for dark backgrounds */
  --line: rgba(13, 13, 13, 0.14);
  --line-soft: rgba(13, 13, 13, 0.08);
  --shadow: 0 18px 40px rgba(13, 13, 13, 0.10);

  /* --- Type --- */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* --- Layout --- */
  --maxw: 1240px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 2px;
  --facet: 26px; /* size of the signature clipped corner */
}

/* --- Reset --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ink-soft);
  display: inline-block;
}

/* --- Image frames --------------------------------------------
   Two treatments:
   1) Default .facet — used on category tiles, product cards and
      the lightbox. Rounded corners, no border normally; a thin
      black border appears on hover (of the frame or its parent
      tile/card) to invite the click.
   2) .facet--framed — used for the Kamini logo image and every
      photo on the About page. Rounded corners with an always-on,
      very thin black border, like a fixed picture frame.        */
.facet {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.facet:hover,
.cat-tile:hover .facet,
.product-card:hover .facet {
  border-color: var(--ink);
}
.facet--framed {
  border: 1px solid var(--ink);
}
.facet--framed:hover { border-color: var(--ink); }

.facet > * {
  display: block;
  width: 100%;
  height: 100%;
}

/* Real photos keep their true proportions inside the frame:
   smaller/differently-shaped photos are letterboxed on white rather
   than stretched or cropped. */
.facet > img {
  object-fit: contain;
  background: #fff;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--ivory); }

.btn--solid { background: var(--ink); color: var(--ivory); }
.btn--solid:hover { background: var(--ink-soft); border-color: var(--ink-soft); }

.btn--gold { border-color: var(--accent); color: var(--accent); }
.btn--gold:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }

.btn--ghost-light { border-color: rgba(250,248,245,0.55); color: var(--ivory); }
.btn--ghost-light:hover { background: var(--ivory); color: var(--ink); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.logo { display: inline-flex; align-items: center; }
.logo-img { height: 24px; width: auto; display: block; }
.logo-img--footer { height: 32px; }

.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.4rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--ink); border-color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-header .container { position: relative; justify-content: flex-end; }
  .site-header .logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem clamp(1.25rem, 4vw, 3rem) 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .main-nav.is-open { max-height: 480px; opacity: 1; visibility: visible; }
  .main-nav a { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--line-soft); }
}

/* =========================================================
   Page intro band (used on category / about / contact)
   ========================================================= */
.page-band {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.25rem);
}
.page-band h1 { color: var(--ivory); font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-top: 0.6rem; }
.page-band p { max-width: 46ch; color: rgba(250,248,245,0.78); margin-top: 0.9rem; font-size: 1.02rem; }
.page-band .eyebrow { color: rgba(250,248,245,0.65); }
.page-band .eyebrow::before { background: rgba(250,248,245,0.65); }

/* =========================================================
   Hero (home)
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin-top: 0.75rem;
  letter-spacing: -0.01em;
}
.hero h1 em { color: var(--ink); font-style: italic; }
.hero p { max-width: 42ch; margin-top: 1.25rem; font-size: 1.06rem; color: var(--ink-soft); }
.hero .hero-actions { display: flex; gap: 1rem; margin-top: 2.1rem; flex-wrap: wrap; }
.hero-figure { aspect-ratio: 4 / 5; }
.hero-figure--landscape { aspect-ratio: 4 / 3; }
.placeholder-art { width: 100%; height: 100%; }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 420px; margin: 0 auto; }
}

/* =========================================================
   Placeholder artwork (stand-in until real photography is added)
   ========================================================= */
.placeholder-art {
  background: linear-gradient(155deg, #f1efec 0%, #ddd8d0 55%, #c7c0b5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  color: var(--ink-soft);
  padding: 1rem;
}
.placeholder-art svg { width: 34%; height: auto; opacity: 0.55; }
.placeholder-art .ph-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* =========================================================
   Sections / generic
   ========================================================= */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section--alt { background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section--ink { background: var(--ink); color: var(--ivory); }
.section-head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-top: 0.6rem; }
.section-head p { margin-top: 0.85rem; color: var(--ink-soft); font-size: 1.02rem; }
.section--ink .eyebrow { color: rgba(250,248,245,0.65); }
.section--ink .eyebrow::before { background: rgba(250,248,245,0.65); }
.section--ink .section-head h2 { color: var(--ivory); }
.section--ink .section-head p { color: rgba(250,248,245,0.75); }
.section--ink .value-card { border-top-color: rgba(250,248,245,0.25); }
.section--ink .value-card h3 { color: var(--ivory); }
.section--ink .value-card p { color: rgba(250,248,245,0.72); }
.section--ink .value-card .value-num { color: var(--accent-light); }

/* --- Category tiles (home) --- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); align-items: start; }
.cat-tile { display: block; }
.cat-tile figure { margin: 0; aspect-ratio: 1 / 1; }
.cat-tile figcaption { margin-top: 1rem; }
.cat-tile .cat-name { font-family: var(--font-display); font-size: 1.28rem; transition: opacity 0.2s ease; }
.cat-tile .cat-sub { display: block; margin-top: 0.25rem; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ink-soft); }
.cat-tile:hover .cat-name { opacity: 0.6; }

@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

/* --- Stone strip (home) --- */
.stone-strip { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.stone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.stone-pill:hover { border-color: var(--ink); transform: translateY(-2px); }
.stone-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* --- Values / craft row --- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.value-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
.value-card { padding-top: 1.6rem; border-top: 1px solid var(--line); }
.value-card .value-num { font-family: var(--font-display); font-style: italic; color: var(--accent); font-size: 1.1rem; }
.value-card .fair-logo { height: 46px; width: auto; display: block; margin-bottom: 0.9rem; }
.value-card .fair-logo--lg { height: 62px; }
.value-card h3 { margin-top: 0.6rem; font-size: 1.2rem; }
.value-card p { margin-top: 0.6rem; color: var(--ink-soft); font-size: 0.96rem; }
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }

/* --- Quote --- */
.quote-block { max-width: 760px; }
.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.45;
  margin: 0;
  color: var(--ivory);
}
.quote-block cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,248,245,0.6); }

/* --- CTA banner (About page close) --- */
.cta-banner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-banner .btn { margin-top: 1.7rem; }

/* =========================================================
   Filter bar (category pages)
   ========================================================= */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.4rem;
}
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 0.55rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.filter-group .filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 0.4rem;
}
.chip {
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--ivory); }

.result-count { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.6rem; }

/* --- Product grid --- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap) 1.75rem; }
.product-card figure { aspect-ratio: 1 / 1; margin: 0; }
.product-card .pc-body { padding-top: 1rem; }
.product-card .pc-collection {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.product-card h3 { font-size: 1.12rem; margin-top: 0.35rem; font-weight: 600; }
.product-card .pc-meta { margin-top: 0.35rem; font-size: 0.85rem; color: var(--ink-soft); }
.product-card .pc-cta {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  display: inline-block;
  padding-bottom: 2px;
}

.empty-state {
  padding: 3.5rem 1rem;
  text-align: center;
  color: var(--ink-soft);
  border: 1px dashed var(--line);
  display: none;
}
.empty-state.is-visible { display: block; }

@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* --- Product card is clickable: open a larger detail view --- */
.product-card { cursor: pointer; }
.product-card figure { overflow: hidden; }
.product-card figure img { transition: transform 0.35s ease; }
.product-card:hover figure img { transform: scale(1.035); }
.product-card .pc-cta { position: relative; z-index: 2; }

/* =========================================================
   Lightbox — full-size photo + details on click
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.85);
}
.lightbox-panel {
  position: relative;
  background: var(--paper);
  width: 100%;
  max-width: 920px;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
}
.lightbox-close:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.lightbox-figure { aspect-ratio: 1 / 1; align-self: start; }
.lightbox-body { display: flex; flex-direction: column; justify-content: center; }
.lightbox-body .pc-collection { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.lightbox-body h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-top: 0.5rem; }
.lightbox-body .pc-meta { margin-top: 0.7rem; font-size: 0.98rem; color: var(--ink-soft); line-height: 1.55; }
.lightbox-body .btn { margin-top: 1.8rem; align-self: flex-start; }
body.lightbox-open { overflow: hidden; }

@media (max-width: 720px) {
  .lightbox-panel { grid-template-columns: 1fr; padding: 1.25rem; max-height: 92vh; }
}

/* =========================================================
   About page specifics
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-figure { order: 2; }
.split-figure { aspect-ratio: 4 / 5; }
.split-figure--landscape { aspect-ratio: 3 / 2; }
.split-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.3rem); }
.split-copy p { margin-top: 1rem; color: var(--ink-soft); }
.split-copy p + p { margin-top: 0.9rem; }
@media (max-width: 820px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-figure { order: -1; }
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.3rem; }
.contact-info-list .ci-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.contact-info-list .ci-value { margin-top: 0.3rem; font-size: 1.02rem; }
.contact-info-list a.ci-value:hover { color: var(--ink-soft); }
.map-placeholder { margin-top: 2rem; aspect-ratio: 16/9; }

.form-row { margin-bottom: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.form-row label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; }
.form-row input, .form-row select, .form-row textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.85em 1em;
  color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--ink);
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .form-two { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.8rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(250,248,245,0.82); padding: clamp(3rem, 6vw, 4.2rem) 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; gap: 2.5rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(250,248,245,0.14); }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: 0.92rem; color: rgba(250,248,245,0.68); }
.footer-col h4 { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,248,245,0.55); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.92rem; color: rgba(250,248,245,0.78); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-top: 1.4rem; font-size: 0.78rem; color: rgba(250,248,245,0.5); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Catalogue viewer (view-only, page by page)
   ========================================================= */
.cat-viewer { max-width: 620px; margin: 0 auto; }
.cat-viewer-frame {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 510 / 623.25;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-viewer-frame img {
  width: 100%; height: 100%; object-fit: contain;
  -webkit-user-select: none; user-select: none;
  -webkit-user-drag: none;
  pointer-events: none; /* blocks the easy right-click-and-drag-to-save gesture */
}
.cat-viewer-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-top: 1.4rem;
}
.cat-viewer-controls .btn { padding: 0.8em 1.5em; }
.cat-viewer-controls .btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.cat-page-count { font-size: 0.85rem; color: var(--ink-soft); white-space: nowrap; }
.cat-viewer-note { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 1.2rem; }

/* Hitting Ctrl+P / browser print on this page shows a plain message instead
   of the catalogue pages, since this is meant to stay screen-only. */
.print-only { display: none; }
@media print {
  .site-header, .site-footer, .cat-viewer, .page-band { display: none !important; }
  .print-only { display: block !important; text-align: center; padding: 4rem 1rem; font-family: var(--font-body); }
}
