/* ============================================================
   Barbieria Castello — components.css
   Buttons · cards · accordion · banners · print-shop themed
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--t-fast) var(--ease),
    background-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--phone {
  background: var(--cta-bg);
  color: var(--paper-2);
  padding: 12px 20px 12px 16px;
}
.btn--phone:hover { background: var(--cta-bg-hover); }
.btn--phone .num { font-family: var(--font-mono); font-weight: 600; letter-spacing: 0.02em; }

.btn--primary {
  background: var(--surface-dark);
  color: var(--paper);
  padding: 14px 22px;
  font-size: var(--fs-base);
}
.btn--primary:hover { background: var(--ink-2); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
  padding: 14px 22px;
  font-size: var(--fs-base);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 236, 221, 0.3);
  padding: 14px 22px;
  font-size: var(--fs-base);
}
.btn--ghost-light:hover {
  border-color: var(--paper);
  background: rgba(244, 236, 221, 0.06);
}

.btn--lg { padding: 16px 26px; font-size: var(--fs-base); }
.btn--inline { padding: 6px 12px; font-size: var(--fs-xs); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.btn-link:hover { color: var(--accent-deep); border-color: var(--accent); }
.btn-link::after { content: "→"; }

/* ---------- Accordion / FAQ ---------- */
details.qa {
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--line);
}
details.qa:last-of-type { border-bottom: 1px solid var(--line); }
details.qa > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: -0.012em;
  color: var(--ink);
}
details.qa > summary::-webkit-details-marker { display: none; }
details.qa > summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-deep);
  transition: transform var(--t-fast) var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
details.qa[open] > summary::after { transform: rotate(45deg); }
details.qa > div {
  padding-top: var(--sp-3);
  color: var(--ink-3);
  font-size: var(--fs-sm);
}
details.qa > div p { font-size: inherit; color: inherit; margin: 0; }
details.qa > div p + p { margin-top: var(--sp-3); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: var(--sp-3);
  right: var(--sp-3);
  bottom: var(--sp-3);
  z-index: 60;
  background: var(--surface-dark);
  color: var(--paper);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45);
  max-width: 720px;
  margin-inline: auto;
}
.cookie-banner[data-show="true"] { display: flex; }
.cookie-banner__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: -0.012em;
}
.cookie-banner__text {
  font-size: var(--fs-sm);
  color: rgba(244, 236, 221, 0.78);
  margin: 0;
}
.cookie-banner__text a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(178, 58, 63, 0.5); }
.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.cookie-banner .btn { font-size: var(--fs-sm); padding: 10px 16px; }
.cookie-banner .btn--ghost-light { padding: 10px 16px; }

.cookie-prefs {
  display: none;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(244, 236, 221, 0.15);
}
.cookie-prefs[data-show="true"] { display: flex; }
.cookie-prefs label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(244, 236, 221, 0.85);
}
.cookie-prefs input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--accent);
}
.cookie-prefs label[data-locked] { opacity: 0.7; }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: var(--sp-5) 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-deep); }
.crumbs span[aria-current] { color: var(--ink); }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: var(--sp-2); color: var(--line-2); }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.crumbs ol li { display: inline; }

/* ---------- Two-column long-form ---------- */
.longform {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .longform { grid-template-columns: minmax(0, 280px) 1fr; gap: var(--sp-8); }
}
.longform aside h3 {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: var(--sp-3);
}
.longform aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-2);
}
.longform aside ul a {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.longform aside ul a:hover, .longform aside ul a[aria-current] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.longform article h2 { margin-top: var(--sp-7); }
.longform article h2:first-child { margin-top: 0; }
.longform article h3 { margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.longform article p { margin-top: var(--sp-3); }
.longform article ul {
  margin-top: var(--sp-3);
  padding-left: var(--sp-5);
  display: grid;
  gap: var(--sp-2);
}
.longform article ul li { color: var(--ink-2); font-size: var(--fs-base); }

/* ---------- Page hero image strip ---------- */
.page-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .page-hero-image { aspect-ratio: 16 / 7; }
}
@media (min-width: 1280px) {
  .page-hero-image { aspect-ratio: 21 / 9; }
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) contrast(1.04);
}

/* ---------- Page header (internal pages) ---------- */
.page-header {
  padding-block: var(--sp-7) var(--sp-7);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
@media (min-width: 768px) {
  .page-header { padding-block: var(--sp-8) var(--sp-7); }
}
.page-header__grid {
  display: grid;
  gap: var(--sp-5);
}
@media (min-width: 1024px) {
  .page-header__grid { grid-template-columns: 1.4fr 1fr; align-items: end; gap: var(--sp-7); }
}
.page-header h1 {
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.005em;
}
.page-header p { font-size: var(--fs-md); color: var(--ink-2); margin-top: var(--sp-4); }

/* ---------- Trust band ---------- */
.trust-band {
  background: var(--accent);
  color: var(--paper);
  padding-block: var(--sp-8);
  --accent: var(--accent-deep);
}
@media (min-width: 768px) {
  .trust-band { padding-block: var(--sp-9); }
}
.trust-band__grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .trust-band__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--sp-7) var(--sp-8);
    align-items: start;
  }
  .trust-band__head { grid-column: 1; grid-row: 1; }
  .trust-band__list { grid-column: 2; grid-row: 1; }
  .trust-band__cta { grid-column: 1 / -1; grid-row: 2; }
}
.trust-band__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 221, 0.7);
  margin-bottom: var(--sp-4);
}
.trust-band h2 {
  color: var(--paper);
  font-size: clamp(30px, 4.2vw, 50px);
  letter-spacing: -0.005em;
  line-height: 1.06;
  margin: 0;
}
.trust-band h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: rgba(244, 236, 221, 0.96);
  font-size: 1.08em;
  line-height: 1.0;
}
.trust-band p {
  margin-top: var(--sp-4);
  color: rgba(244, 236, 221, 0.86);
  font-size: var(--fs-md);
  max-width: 48ch;
  line-height: 1.5;
}
.trust-band__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  align-self: start;
}
@media (min-width: 600px) {
  .trust-band__list { grid-template-columns: repeat(2, 1fr); }
}
.trust-band__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-base);
  color: var(--paper);
  line-height: 1.35;
  padding-block: 4px;
  font-weight: 500;
}
.trust-band__list li::before {
  content: "";
  flex: 0 0 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--paper);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>") center / contain no-repeat;
}
.trust-band__cta { padding-top: var(--sp-4); border-top: 1px solid rgba(244, 236, 221, 0.2); }
.trust-band__cta .btn--phone {
  background: var(--ink);
  color: var(--paper);
}
.trust-band__cta .btn--phone:hover { background: var(--ink-2); }

/* ---------- Contact cards (Phone / Email / Shop) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
}
.contact-card {
  padding: var(--sp-6);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.contact-card__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(75, 125, 79, 0.22);
}
.contact-card__big {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 32px);
  letter-spacing: -0.022em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.05;
  transition: color var(--t-fast) var(--ease);
  word-break: keep-all;
}
.contact-card__big:hover { color: var(--accent-deep); text-decoration: none; }
.contact-card__big.mono {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.contact-card__big--email {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: none;
  white-space: normal;
}
.contact-card__address {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.contact-card__address .post {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.contact-card__list {
  list-style: none;
  padding: var(--sp-4) 0 0 0;
  margin: var(--sp-2) 0 0 0;
  display: grid;
  gap: var(--sp-3);
  border-top: 1px solid var(--line);
}
.contact-card__list li {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.contact-card__list li::before {
  content: "";
  flex: 0 0 14px;
  height: 1px;
  margin-top: 10px;
  background: var(--accent);
}

/* ============================================================
   Print-shop components — catalogue, toc, prose-band, rate-card, postcards
   Asymmetric, type-led, less SaaS-grid
   ============================================================ */

/* ---------- Section intro ---------- */
.section-intro {
  max-width: 760px;
  margin-bottom: var(--sp-7);
}
.section-intro h2 {
  font-size: clamp(36px, 5.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin: 0;
}
.section-intro p {
  margin-top: var(--sp-4);
  font-size: var(--fs-md);
  color: var(--ink-2);
  max-width: 58ch;
}
.section-intro p.lead { font-size: var(--fs-md); }
@media (min-width: 768px) {
  .section-intro { margin-bottom: var(--sp-8); }
}

/* ---------- Catalogue — numbered service rows, paper-list style ---------- */
.catalogue {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
}
.catalogue__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-4) var(--sp-5);
  align-items: baseline;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--t) var(--ease);
}
.catalogue__row:hover {
  background: linear-gradient(90deg, transparent 0%, var(--accent-tint) 8%, var(--accent-tint) 92%, transparent 100%);
}
.catalogue__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.88;
  color: var(--accent-deep);
  letter-spacing: -0.02em;
  min-width: 0.9em;
}
.catalogue__body { min-width: 0; }
.catalogue__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: -0.005em;
  margin: 0 0 var(--sp-2) 0;
  line-height: 1.08;
}
.catalogue__body h3 a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.catalogue__body h3 a:hover {
  color: var(--accent-deep);
  text-decoration-color: var(--accent);
}
.catalogue__body p {
  margin: 0;
  font-size: var(--fs-base);
  color: var(--ink-3);
  max-width: 56ch;
}
.catalogue__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.012em;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.catalogue__price small {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
@media (max-width: 767px) {
  .catalogue__row { grid-template-columns: auto 1fr; grid-template-rows: auto auto; gap: var(--sp-3) var(--sp-4); }
  .catalogue__num { grid-row: 1 / 3; }
  .catalogue__price { grid-column: 2; grid-row: 2; justify-self: start; }
}

/* ---------- Prose band — running text, no grid ---------- */
.prose-band {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  max-width: 920px;
}
@media (min-width: 1024px) {
  .prose-band { grid-template-columns: 1fr 1.4fr; gap: var(--sp-8); align-items: start; }
}
.prose-band h2 {
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin: 0;
}
.prose-band p {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0;
}
.prose-band p + p { margin-top: var(--sp-4); }

/* ---------- Table-of-contents — areas list with dotted leader ---------- */
.toc {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
}
.toc li { border-bottom: 1px solid var(--line); }
.toc a {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: var(--sp-3) var(--sp-4);
  align-items: baseline;
  padding: var(--sp-5) 0;
  text-decoration: none;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.toc a:hover { color: var(--accent-deep); text-decoration: none; }
.toc a:hover .toc__leader { border-bottom-color: var(--accent); }
.toc__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.toc__leader {
  align-self: end;
  height: 12px;
  border-bottom: 2px dotted var(--line-2);
  margin: 0 var(--sp-3);
  transition: border-color var(--t-fast) var(--ease);
}
.toc__zip {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.toc__time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--accent-deep);
  white-space: nowrap;
  min-width: 5ch;
  text-align: right;
}
@media (max-width: 600px) {
  .toc a { grid-template-columns: 1fr auto; grid-template-rows: auto auto; }
  .toc__leader { display: none; }
  .toc__zip { grid-row: 2; grid-column: 1; }
  .toc__time { grid-row: 1 / 3; align-self: center; }
}

/* ---------- Rate card — sticker / fridge-magnet card ---------- */
.rate-card {
  background: var(--paper-2);
  border: 1px solid var(--ink);
  border-radius: var(--r-sm);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  max-width: 880px;
  margin-inline: auto;
  position: relative;
  box-shadow:
    2px 2px 0 0 var(--ink),
    var(--shadow-card);
}
.rate-card::before {
  /* corner tape strip — brass color */
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
  width: 120px;
  height: 22px;
  background: var(--brass);
  opacity: 0.85;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.rate-card__head {
  text-align: left;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-5);
  border-bottom: 1px dashed var(--line-2);
}
.rate-card__head h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.06;
  margin: 0 0 var(--sp-3) 0;
}
.rate-card__head p { margin: 0; color: var(--ink-3); font-size: var(--fs-base); }
.rate-card__list {
  display: grid;
  gap: var(--sp-5);
  margin: 0;
}
.rate-card__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-3) var(--sp-5);
  align-items: baseline;
  padding-bottom: var(--sp-5);
  border-bottom: 1px dotted var(--line-2);
}
.rate-card__row:last-child { border-bottom: 0; padding-bottom: 0; }
.rate-card__row dt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.1;
}
.rate-card__row dd { margin: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.rate-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 6.8vw, 88px);
  letter-spacing: -0.018em;
  line-height: 0.9;
  color: var(--accent-deep);
}
.rate-card__note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: right;
  max-width: 28ch;
}
.rate-card__foot {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px dashed var(--line-2);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-3);
  font-size: var(--fs-base);
  max-width: 60ch;
}
@media (max-width: 540px) {
  .rate-card__row { grid-template-columns: 1fr; gap: var(--sp-2); }
  .rate-card__row dd { align-items: flex-start; }
  .rate-card__note { text-align: left; }
}

/* ---------- Pinboard / postcards — testimonials ---------- */
.pinboard { padding-block: var(--sp-9); }
.postcards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7) var(--sp-6);
  margin-top: var(--sp-7);
}
@media (min-width: 768px) {
  .postcards { grid-template-columns: repeat(3, 1fr); gap: var(--sp-7) var(--sp-5); }
}
.postcard {
  position: relative;
  background: #FAF4E2;
  border: 1px solid var(--line-2);
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  border-radius: 2px;
  box-shadow: 0 8px 24px -12px rgba(11, 11, 12, 0.22);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 220px;
}
.postcard--tilt-l { transform: rotate(-1.2deg); }
.postcard--tilt-r { transform: rotate(1.4deg); }
.postcard:hover { transform: rotate(0); transition: transform var(--t) var(--ease); }
.postcard__tape {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 88px;
  height: 22px;
  background: rgba(193, 155, 79, 0.78);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  pointer-events: none;
}
.postcard__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.postcard__sig {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--ink-2);
  font-weight: 600;
}

/* ---------- Paper texture — subtle noise overlay on body ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.36 0 0 0 0 0.28 0 0 0 0.6 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
