/* Linked, single-page collection catalogue. */
.collection-card { display: block; color: inherit; cursor: pointer; }
.collection-card .text-link { pointer-events: none; }
.collection-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.collection-details { padding-top: 20px; background: #f0ede7; }
.collection-detail { scroll-margin-top: 90px; padding: 105px 0; border-bottom: 1px solid var(--line); }
.collection-detail:first-child { padding-top: 30px; }
.collection-detail:last-child { border-bottom: 0; }
.collection-detail-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.collection-detail-heading h2 { margin: 0; font: 600 clamp(42px, 5vw, 68px)/.9 var(--serif); letter-spacing: -.035em; }
.collection-detail-heading > p { max-width: 360px; margin: 0; color: var(--muted); }
.collection-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.collection-product { position: relative; min-height: 400px; overflow: hidden; background: var(--navy); }
.collection-product img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; transition: transform .6s ease; }
.collection-product:hover img { transform: scale(1.05); }
.collection-product div { position: absolute; inset: auto 0 0; padding: 50px 20px 18px; color: #fff; background: linear-gradient(transparent, rgba(7,26,49,.88)); }
.collection-product span { color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.collection-product h3 { margin: 4px 0 0; font: 600 28px/1 var(--serif); }
.collection-back { margin-top: 26px; }
@media (max-width: 800px) { .collection-detail-heading { display: block; } .collection-detail-heading > p { margin-top: 16px; } .collection-product-grid { grid-template-columns: repeat(2, 1fr); } .collection-product, .collection-product img { min-height: 330px; } }
@media (max-width: 520px) { .collection-detail { padding: 72px 0; } .collection-product-grid { grid-template-columns: 1fr; } .collection-product, .collection-product img { min-height: 380px; } }
