/* One-page stone data sheet: A4 when printed or saved as PDF. */
@page { size: A4; margin: 14mm; }
* { box-sizing: border-box; }
body { margin: 0; background: #ECE7DF; color: #1A1917; font-family: 'Atkinson Hyperlegible Next', 'Atkinson Hyperlegible', system-ui, sans-serif; font-size: 15px; line-height: 1.5; }
img { max-width: 100%; height: auto; display: block; }
a { color: #9A4600; }
:focus-visible { outline: 3px solid #1A1917; outline-offset: 3px; }
.toolbar { max-width: 210mm; margin: 0 auto; padding: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.toolbar a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 700; }
.toolbar button { min-height: 48px; padding: 0 22px; border: none; background: #FE7600; color: #141312; font: inherit; font-weight: 700; cursor: pointer; }
.sheet { max-width: 210mm; margin: 0 auto 40px; background: #fff; padding: 14mm; }
.sheet__head { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #1A1917; padding-bottom: 10px; margin-bottom: 18px; }
.sheet__head span { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
.sheet__kicker { margin: 0; font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: #9A4600; }
h1 { margin: 4px 0 16px; font-family: 'Bodoni Moda', Didot, serif; font-weight: 500; font-size: 34px; line-height: 1.1; }
.sheet__photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; }
.sheet__photos figure { margin: 0; }
.sheet__photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #ECE7DF; }
.sheet__photos figcaption { font-size: 12px; color: #4F4A43; margin-top: 4px; }
.sheet__specs { display: grid; grid-template-columns: 38% 62%; margin: 0 0 14px; }
.sheet__specs dt, .sheet__specs dd { margin: 0; padding: 8px 0; border-top: 1px solid #C9C1B4; }
.sheet__specs dt { color: #4F4A43; }
.sheet__specs dt:last-of-type, .sheet__specs dd:last-of-type { border-bottom: 1px solid #C9C1B4; }
.sheet__note { font-size: 13px; color: #4F4A43; margin: 0 0 18px; }
.sheet__foot { display: flex; justify-content: space-between; gap: 16px; border-top: 2px solid #1A1917; padding-top: 10px; font-size: 12px; }
.sheet__url { text-align: right; color: #4F4A43; }
@media print {
  body { background: #fff; }
  .toolbar { display: none; }
  .sheet { margin: 0; padding: 0; max-width: none; }
  .sheet__photos img { aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
  .sheet { padding: 20px 16px; }
  .sheet__photos { grid-template-columns: minmax(0, 1fr); }
  .sheet__foot { flex-direction: column; }
  .sheet__url { text-align: left; }
}
