@font-face {
  font-family: Montserrat;
  src: url('assets/fonts/Montserrat-Regular.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url('assets/fonts/Montserrat-SemiBold.otf') format('opentype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
:root {
  --ink: #101114;
  --line: #33363d;
  --white: #f7f8fa;
  --muted: #b5bac5;
  --signal: #5b9fff;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: Montserrat, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
.catalog { max-width: 1600px; margin: auto; padding: clamp(20px, 4vw, 64px); }
.catalog-head { border-bottom: 1px solid var(--line); padding-bottom: 32px; margin-bottom: 40px; }
.catalog-brand { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.catalog-brand img { display: block; width: 160px; height: auto; }
.catalog-brand p { margin: 0; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 600; line-height: 1.12; letter-spacing: -.04em; margin: 36px 0 0; }
.style-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 28px; }
.style-card { display: block; min-width: 0; border: 1px solid var(--line); background: #17191e; transition: border-color .2s, box-shadow .25s, transform .2s; }
@media (hover: hover) {
  .style-card:hover { border-color: #5b9fff80; box-shadow: 0 8px 30px #2684ff24, 0 0 14px #2684ff0d; transform: translateY(-3px); }
}
.style-card:focus-visible { outline: 3px solid var(--signal); outline-offset: 5px; box-shadow: 0 8px 30px #2684ff24; }
.style-card > img { display: block; width: 100%; height: auto; aspect-ratio: 1775/1091; object-fit: cover; object-position: top; border-bottom: 1px solid var(--line); background: #24272e; }
.card-copy { padding: 24px; }
.card-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.card-heading h2 { font-size: clamp(21px, 2vw, 28px); font-weight: 600; line-height: 1.25; letter-spacing: -.025em; margin: 0; }
.card-heading > span { display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; width: 36px; height: 36px; flex-shrink: 0; }
.card-copy > p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 14px 0 24px; }
.card-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; }
.card-meta > span:first-child { color: var(--white); }
footer { padding-top: 40px; font-size: 12px; color: var(--muted); }
@media (max-width: 640px) {
  .style-grid { grid-template-columns: 1fr; gap: 28px; }
  .catalog-head { margin-bottom: 28px; }
  .catalog-brand { flex-wrap: wrap; gap: 16px; }
  .catalog-brand img { width: 132px; }
  .catalog-brand p { font-size: 10px; letter-spacing: .06em; }
  h1 { margin-top: 28px; }
  .card-copy { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .style-card { transition: none; }
  .style-card:hover { transform: none; }
}
