* { box-sizing: border-box; }
:root {
  --ink: #121212;
  --body: #1a1a1a;
  --muted: #5a5a5a;
  --light: #8a8a8a;
  --hair: #e2e2e2;
  --rule: #b8b8b8;
  --bg: #ffffff;
  --paper: #faf8f3;
  --link: #326891;
  --hot: #d0021b;
  --gshock: #ffd400;
}
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Lora', Georgia, serif;
  color: var(--body);
  background: var(--bg);
  margin: 0;
  line-height: 1.5;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
.smallcaps {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 11px;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* === Top utility === */
.util {
  border-bottom: 1px solid var(--hair);
  padding: 9px 0;
  font-size: 11px;
  color: var(--muted);
  font-family: 'Source Sans 3', sans-serif;
}
.util .row { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.util .left, .util .right { display: flex; gap: 18px; align-items: center; letter-spacing: 0.4px; }
.util a { cursor: pointer; }
.util a:hover { color: var(--ink); }
.util .partner-cta {
  background: var(--ink); color: #fff;
  padding: 5px 12px; border-radius: 2px;
  font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; font-size: 10px;
}
.util .partner-cta strong { color: var(--gshock); }

/* === Masthead === */
.masthead {
  text-align: center;
  padding: 32px 0 18px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.masthead .crest {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.masthead .logo {
  font-family: 'Bowlby One', 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 96px;
  margin: 0;
  letter-spacing: -1px;
  line-height: 0.9;
  color: var(--ink);
  display: inline-block;
  position: relative;
}
.masthead .logo .dash {
  color: var(--ink);
  margin: 0 6px;
  font-weight: 400;
}
.masthead .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.3px;
}
.masthead .corner-left,
.masthead .corner-right {
  position: absolute;
  top: 42px;
  font-size: 11px;
  color: var(--muted);
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.45;
}
.masthead .corner-left  { left: 24px; text-align: left; }
.masthead .corner-right { right: 24px; text-align: right; }
.masthead strong.k { color: var(--ink); display: block; }

/* === Section nav === */
.secnav {
  border-bottom: 1px solid var(--hair);
  padding: 12px 0;
  font-family: 'Source Sans 3', sans-serif;
  overflow-x: auto;
}
.secnav .row {
  display: flex; justify-content: center; flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}
.secnav a {
  padding: 0 12px;
  border-right: 1px solid var(--hair);
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
}
.secnav a:last-child { border-right: 0; }
.secnav a:hover { color: var(--hot); }
.secnav a.active { color: var(--hot); }

/* === Date strip === */
.dateline {
  border-bottom: 1px solid var(--hair);
  padding: 8px 0;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.4px;
}
.dateline em { color: var(--ink); font-weight: 500; }

/* === LEAD MODULE === */
.lead-mod {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--hair);
}
.lead-mod .lead-col { border-right: 1px solid var(--hair); padding-right: 36px; margin-right: -36px; }
.lead-mod .kicker { color: var(--hot); margin-bottom: 8px; }
.lead-mod h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  color: var(--ink);
}
.lead-mod h2 a:hover { color: var(--link); }
.lead-mod .deck {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 18px; color: var(--muted);
  line-height: 1.4; margin-bottom: 22px;
  max-width: 600px;
}
.lead-mod .photo {
  margin: 0 0 12px;
  background: var(--paper);
  border: 1px solid var(--hair);
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lead-mod .photo img { width: 70%; height: 90%; object-fit: contain; mix-blend-mode: multiply; }
.lead-mod .caption {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 13px; color: var(--muted);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair);
}
.lead-mod .caption strong { font-style: normal; color: var(--ink); }
.lead-mod .body {
  font-size: 17px; line-height: 1.6; color: var(--body);
  column-count: 2; column-gap: 28px;
  column-rule: 1px solid var(--hair);
}
.lead-mod .body p { margin: 0 0 12px; }
.lead-mod .body p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 60px;
  float: left; line-height: 0.9;
  margin: 4px 8px 0 0;
  color: var(--ink);
}
.lead-mod .byline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.lead-mod .byline em {
  color: var(--muted);
  font-style: italic;
  font-family: 'Lora', serif;
  text-transform: none;
  letter-spacing: 0.2px;
}

/* sidebar */
.sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.news-list { list-style: none; padding: 0; margin: 0; }
.news-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
}
.news-list .nkick {
  display: flex; gap: 8px; align-items: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--hot);
  margin-bottom: 4px;
}
.news-list .ndate { color: var(--light); font-weight: 400; letter-spacing: 0.5px; }
.news-list .ntitle {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  display: block;
}
.news-list .ntitle:hover { color: var(--link); }

/* === Section divider === */
.section-rule {
  margin: 36px 0 20px;
  text-align: center;
  position: relative;
}
.section-rule::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--ink);
}
.section-rule h3 {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  background: #fff;
  padding: 0 18px;
  margin: 0;
  position: relative;
  font-size: 22px;
  color: var(--ink);
}

/* === 3-col stories === */
.stories-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hair);
}
.story { padding-right: 28px; border-right: 1px solid var(--hair); }
.story:last-child { border-right: 0; padding-right: 0; }
.story .photo {
  aspect-ratio: 4/3; background: var(--paper);
  border: 1px solid var(--hair); margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.story .photo img { width: 78%; height: 88%; object-fit: contain; mix-blend-mode: multiply; }
.story .kicker { color: var(--hot); margin-bottom: 6px; display: flex; gap: 10px; align-items: center; }
.story .kicker .kdate { color: var(--light); font-weight: 400; letter-spacing: 0.5px; }
.story h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  line-height: 1.15; margin: 0 0 8px; color: var(--ink);
}
.story h3 a:hover { color: var(--link); }
.story .deck {
  font-family: 'Lora', serif; font-size: 14px;
  line-height: 1.5; color: var(--muted); margin-bottom: 10px;
}
.story .meta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
  padding-top: 10px; border-top: 1px solid var(--hair);
}
.story .meta strong { color: var(--ink); }

/* === Wide + 2 narrow === */
.stories-wide {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--hair);
}
.stories-wide .feature { border-right: 1px solid var(--hair); padding-right: 36px; }
.stories-wide .feature .photo {
  aspect-ratio: 16/9; background: var(--paper);
  border: 1px solid var(--hair); margin-bottom: 14px;
  display:flex; align-items:center; justify-content:center;
}
.stories-wide .feature .photo img { width: 60%; height: 90%; object-fit: contain; mix-blend-mode: multiply; }
.stories-wide .feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 800;
  line-height: 1.05; letter-spacing: -0.3px;
  margin: 0 0 10px;
}
.stories-wide .feature h3 a:hover { color: var(--link); }
.stories-wide .feature .deck {
  font-style: italic; color: var(--muted);
  font-size: 16px; margin-bottom: 14px;
}
.stories-wide .feature .body { font-size: 15px; line-height: 1.55; color: var(--body); }
.stories-wide .feature .body p { margin: 0 0 10px; }
.stories-wide .secondary { display: flex; flex-direction: column; gap: 24px; }
.ministory { padding-bottom: 22px; border-bottom: 1px solid var(--hair); }
.ministory:last-child { border-bottom: 0; padding-bottom: 0; }
.ministory .photo {
  aspect-ratio: 5/3; background: var(--paper);
  margin-bottom: 10px; border: 1px solid var(--hair);
  display:flex; align-items:center; justify-content:center; overflow: hidden;
}
.ministory .photo img { width: 70%; height: 85%; object-fit: contain; mix-blend-mode: multiply; }
.ministory .kicker { color: var(--hot); margin-bottom: 6px; }
.ministory h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  line-height: 1.15; margin: 0 0 6px; color: var(--ink);
}
.ministory h4 a:hover { color: var(--link); }
.ministory .deck {
  font-family: 'Lora', serif; font-size: 13px;
  color: var(--muted); line-height: 1.5;
}

/* === Editorial — От редакции === */
.editorial {
  background: var(--paper);
  padding: 40px 50px;
  margin: 36px 0;
  border-top: 4px double var(--ink);
  border-bottom: 4px double var(--ink);
}
.editorial .ehead { text-align: center; margin-bottom: 28px; }
.editorial .ehead .ekick {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted); margin-bottom: 6px;
}
.editorial .ehead h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 34px; font-weight: 700;
  margin: 0;
}
.editorial .body {
  column-count: 2; column-gap: 36px; column-rule: 1px solid var(--rule);
  font-size: 16px; line-height: 1.65;
  max-width: 880px; margin: 0 auto;
}
.editorial .body p { margin: 0 0 12px; }
.editorial .body p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 56px; float: left; line-height: 0.9; margin: 4px 8px 0 0;
}
.editorial .signature {
  text-align: center; margin-top: 22px;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 16px;
  color: var(--ink);
}
.editorial .signature::before, .editorial .signature::after { content: '— '; color: var(--muted); }
.editorial .signature::after { content: ' —'; }

/* === Recommended retailer (Chaster-Club) === */
.partner {
  margin: 36px 0;
  padding: 30px 36px 32px;
  background: #fff;
  border: 2px solid var(--ink);
  position: relative;
}
.partner::before {
  content: 'РЕКОМЕНДОВАНО G-FANS';
  position: absolute;
  top: -10px; left: 36px;
  background: #fff;
  padding: 0 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; font-weight: 900;
  letter-spacing: 2px;
  color: var(--ink);
}
.partner-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 28px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair);
}
.partner-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 800;
  margin: 0 0 6px;
}
.partner-head .ptag {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 15px; color: var(--muted);
  max-width: 700px;
}
.partner-head .pcta {
  background: var(--ink); color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 22px;
  white-space: nowrap;
  border-radius: 2px;
}
.partner-head .pcta strong { color: var(--gshock); }
.partner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pcell {
  text-align: center;
  padding-right: 22px;
  border-right: 1px solid var(--hair);
}
.pcell:last-child { border-right: 0; padding-right: 0; }
.pcell .photo {
  aspect-ratio: 1/1; background: var(--paper);
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pcell .photo img { width: 70%; height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.pcell .pkick {
  color: var(--muted);
  margin-bottom: 4px;
}
.pcell h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  line-height: 1.2; margin: 0 0 8px;
  color: var(--ink); min-height: 36px;
}
.pcell .pmeta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  display: flex; justify-content: center; gap: 8px; align-items: baseline;
}
.pcell .pmeta .old {
  font-weight: 400; color: var(--muted); text-decoration: line-through; font-size: 12px;
}
.partner-foot {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--hair);
  font-family: 'Lora', serif; font-style: italic;
  font-size: 12px; color: var(--muted);
  text-align: center;
}

/* === Newsletter === */
.newsletter {
  background: var(--ink); color: #fff;
  padding: 32px 36px;
  margin: 36px 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px; align-items: center;
}
.newsletter h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 800;
  margin: 0 0 8px;
}
.newsletter p {
  font-family: 'Lora', serif; font-style: italic;
  color: #d0d0d0; margin: 0; font-size: 15px;
}
.newsletter form {
  display: flex; gap: 0;
  border: 1.5px solid #fff;
  border-radius: 2px;
  overflow: hidden;
}
.newsletter input {
  flex: 1; border: 0;
  padding: 12px 16px;
  font-family: 'Lora', serif;
  font-size: 15px;
  background: transparent; color: #fff;
  outline: none;
}
.newsletter input::placeholder { color: #999; }
.newsletter button {
  background: var(--gshock); color: var(--ink);
  border: 0; padding: 0 22px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer;
}

/* === Archive grid by collection === */
.archive-head {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 800;
  margin: 0 0 8px;
}
.archive-sub {
  font-family: 'Lora', serif; font-style: italic;
  color: var(--muted); font-size: 14px;
  margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}
.archive-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 36px;
}
.acol {
  padding: 0 18px;
  border-right: 1px solid var(--hair);
}
.acol:first-child { padding-left: 0; }
.acol:last-child { border-right: 0; padding-right: 0; }
.acol h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 800;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}
.acol ul { list-style: none; padding: 0; margin: 0; }
.acol li {
  padding: 10px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 13px;
  line-height: 1.4;
}
.acol li:last-child { border-bottom: 0; }
.acol li .adate {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; color: var(--light);
  letter-spacing: 0.5px; display: block;
  margin-bottom: 2px;
}
.acol li .atitle { color: var(--ink); font-family: 'Lora', serif; }
.acol li .atitle:hover { color: var(--link); }

/* === Footer === */
.footer {
  border-top: 4px double var(--ink);
  background: #f8f6f0;
  padding: 36px 0 24px;
  color: var(--muted);
  font-size: 13px;
}
.footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 {
  font-family: 'Playfair Display', serif; font-size: 16px;
  color: var(--ink); margin: 0 0 12px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 6px; }
.footer a:hover { color: var(--ink); text-decoration: underline; }
.footer .copy {
  border-top: 1px solid var(--hair);
  padding-top: 16px; margin-top: 28px;
  font-size: 11px;
  display: flex; justify-content: space-between;
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer .gflogo {
  font-family: 'Bowlby One', sans-serif;
  font-size: 32px;
  color: var(--ink); display: inline-block;
  margin-bottom: 10px;
}

/* === Catalog page === */
.breadcrumb {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  padding: 18px 0 10px;
  border-bottom: 1px solid var(--hair);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 8px; color: var(--light); }
.breadcrumb .here { color: var(--ink); font-weight: 700; }

.cat-head {
  text-align: center;
  padding: 38px 0 20px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.cat-head .ekick {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hot);
  margin-bottom: 10px;
  font-weight: 700;
}
.cat-head h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 0 0 12px;
  color: var(--ink);
}
.cat-head .deck {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 14px;
  line-height: 1.45;
}
.cat-head .stats {
  display: flex; justify-content: center; gap: 36px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--hair);
  margin-top: 16px;
}
.cat-head .stats strong { color: var(--ink); display: block; font-size: 22px; font-family: 'Playfair Display', serif; letter-spacing: 0; margin-bottom: 2px; }

.cat-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}
.cat-toolbar .count strong { color: var(--ink); }
.cat-toolbar .sort { display: flex; gap: 16px; align-items: center; }
.cat-toolbar .sort a { cursor: pointer; }
.cat-toolbar .sort a:hover { color: var(--ink); }
.cat-toolbar .sort a.active { color: var(--hot); font-weight: 700; }

.cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--hair);
}

/* Sidebar filters */
.cat-side h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
}
.cat-side details {
  border-bottom: 1px solid var(--hair);
  padding: 12px 0;
}
.cat-side details[open] summary { color: var(--hot); }
.cat-side summary {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.cat-side summary::-webkit-details-marker { display: none; }
.cat-side summary::after {
  content: '+';
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--muted);
  margin-left: 10px;
}
.cat-side details[open] summary::after { content: '−'; }
.cat-side summary .cnt {
  color: var(--light);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 10px;
  margin-left: auto;
  margin-right: 10px;
}
.cat-side .filtr {
  list-style: none;
  padding: 10px 0 4px;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
  font-family: 'Lora', serif;
  font-size: 13px;
}
.cat-side .filtr li { padding: 4px 0; }
.cat-side .filtr a { color: var(--body); }
.cat-side .filtr a:hover { color: var(--link); text-decoration: underline; }
.cat-side .show-all {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--link);
  margin-top: 6px;
  cursor: pointer;
}

.cat-side .cat-related {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 4px double var(--ink);
}
.cat-side .cat-related h4 {
  font-style: italic;
  font-weight: 700;
  border-bottom: 1px solid var(--hair);
}
.cat-side .cat-related ul { list-style: none; padding: 0; margin: 0; }
.cat-side .cat-related li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hair);
  font-family: 'Lora', serif;
  font-size: 14px;
}
.cat-side .cat-related li:last-child { border-bottom: 0; }
.cat-side .cat-related a:hover { color: var(--link); }

/* Product grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cat-card {
  display: flex; flex-direction: column;
  padding: 18px 16px 22px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  text-align: center;
  transition: background 0.15s;
}
.cat-card:hover { background: var(--paper); }
.cat-card:nth-child(4n) { border-right: 0; }
.cat-card .photo {
  aspect-ratio: 1/1;
  background: var(--paper);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--hair);
  overflow: hidden;
}
.cat-card .photo img {
  width: 80%; height: 80%; object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.25s ease;
}
.cat-card:hover .photo img { transform: scale(1.04); }
.cat-card .pseries {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--hot);
  font-weight: 700;
  margin-bottom: 4px;
}
.cat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 8px;
}
.cat-card:hover h3 { color: var(--link); }
.cat-card .pmeta {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--muted);
  margin-top: auto;
}

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 4px;
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--hair);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.pagination a, .pagination span {
  padding: 8px 14px;
  border: 1px solid var(--hair);
  color: var(--ink);
  background: #fff;
  text-transform: uppercase;
  cursor: pointer;
}
.pagination a:hover { background: var(--paper); border-color: var(--ink); }
.pagination .current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.pagination .disabled { color: var(--light); cursor: default; background: var(--paper); }
.pagination .ellipsis { border: 0; padding: 8px 4px; background: transparent; }

/* Catalog hub (index) */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--hair);
}
/* Site-wide quick search bar */
.qsearch {
  margin: 18px 0 28px;
  position: relative;
}
.qsearch form {
  display: flex; align-items: center;
  background: #fff;
  border: 1px solid var(--hair);
  padding: 12px 18px;
  gap: 10px;
}
.qsearch form:focus-within {
  border-color: var(--ink);
  box-shadow: 0 2px 0 var(--paper);
}
.qsearch .icon { color: var(--muted); font-size: 18px; }
.qsearch input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-family: 'Lora', serif; font-size: 17px; color: var(--ink);
}
.qsearch input::placeholder { color: var(--muted); font-style: italic; }
.qsearch .submit {
  font-family: 'Source Sans 3', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1.5px;
  background: var(--ink); color: #fff; border: 0;
  padding: 8px 16px; cursor: pointer;
}
.qsearch .submit:hover { background: var(--hot); }
.qsearch .qhint {
  font-family: 'Source Sans 3', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-top: 6px;
}
.qsearch .qhint a { color: var(--link); }
.qsearch .qdrop {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border: 1px solid var(--hair); border-top: 0;
  max-height: 480px; overflow-y: auto; z-index: 100;
  display: none;
}
.qsearch .qdrop.open { display: block; }
.qsearch .qdrop a {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 12px; padding: 10px 14px;
  border-bottom: 1px solid var(--hair);
  text-decoration: none; color: inherit;
  align-items: center;
}
.qsearch .qdrop a:last-child { border-bottom: 0; }
.qsearch .qdrop a:hover { background: var(--paper); }
.qsearch .qdrop .qthumb {
  width: 56px; height: 56px;
  background: var(--paper); border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.qsearch .qdrop .qthumb img {
  width: 80%; height: 80%; object-fit: contain;
  mix-blend-mode: multiply;
}
.qsearch .qdrop .qcat {
  font-family: 'Source Sans 3', sans-serif; font-size: 10px;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--hot); margin-bottom: 2px;
}
.qsearch .qdrop .qname {
  font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700;
  color: var(--ink); line-height: 1.2;
}
.qsearch .qdrop .qfooter {
  padding: 12px 14px; text-align: center;
  font-family: 'Source Sans 3', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); background: var(--paper);
}
.qsearch .qdrop .qfooter a { color: var(--link); }

.hub-cell {
  padding: 24px 22px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  display: flex; flex-direction: column;
  background: #fff;
  transition: background 0.15s;
}
.hub-cell:hover { background: var(--paper); }
.hub-cell:nth-child(3n) { border-right: 0; }
.hub-cell .photo {
  aspect-ratio: 5/3;
  background: var(--paper);
  margin-bottom: 14px;
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hub-cell .photo img { width: 70%; height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.hub-cell .ekick {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hot);
  font-weight: 700;
  margin-bottom: 6px;
}
.hub-cell h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.hub-cell:hover h3 { color: var(--link); }
.hub-cell .deck {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
}
.hub-cell .meta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--hair);
  display: flex; justify-content: space-between;
}
.hub-cell .meta strong { color: var(--ink); }

/* === Product page === */
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hair);
}
.product-gallery .photo-main {
  background: var(--paper);
  border: 1px solid var(--hair);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
}
.product-gallery .photo-main img { width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; }
.product-gallery .thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.product-gallery .thumbs .thumb {
  aspect-ratio: 1/1;
  background: var(--paper);
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}
.product-gallery .thumbs .thumb:hover { border-color: var(--ink); }
.product-gallery .thumbs .thumb.active { border: 2px solid var(--ink); }
.product-gallery .thumbs img { width: 80%; height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.product-gallery .photo-caption {
  font-family: 'Lora', serif; font-style: italic;
  color: var(--muted); font-size: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
}

.product-info .pkicker {
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--hot);
  margin-bottom: 8px;
}
.product-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
  color: var(--ink);
}
.product-info .pdeck {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.product-essentials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 22px;
}
.product-essentials .e-cell {
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--hair);
  font-family: 'Source Sans 3', sans-serif;
}
.product-essentials .e-cell:nth-child(odd) { border-right: 1px solid var(--hair); padding-right: 16px; }
.product-essentials .e-cell:nth-child(even) { padding-left: 16px; }
.product-essentials .e-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 3px;
}
.product-essentials .e-value {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.product-essentials .e-value a { color: var(--ink); border-bottom: 1px solid var(--rule); }
.product-essentials .e-value a:hover { color: var(--link); }

/* Big Chaster CTA on product page */
.chaster-cta {
  background: var(--ink);
  color: #fff;
  padding: 24px 28px;
  border-radius: 2px;
  margin: 0 0 22px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.chaster-cta::before {
  content: 'РЕКОМЕНДОВАНО G-FANS';
  position: absolute;
  top: -8px; left: 22px;
  background: var(--gshock);
  color: var(--ink);
  padding: 2px 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px; font-weight: 900;
  letter-spacing: 1.8px;
}
.chaster-cta .ctitle {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.chaster-cta .csub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: #d0d0d0;
  line-height: 1.45;
}
.chaster-cta .csub strong { color: var(--gshock); font-style: normal; font-weight: 700; }
.chaster-cta .cbtn {
  background: var(--gshock);
  color: var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px; font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 16px 24px;
  white-space: nowrap;
  display: inline-block;
}
.chaster-cta .cbtn:hover { background: #ffe340; }

/* Spec table */
.spec-block { margin: 36px 0; padding-top: 24px; border-top: 4px double var(--ink); }
.spec-block h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 18px;
  text-align: center;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
}
.spec-grid .spec-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--hair);
  padding: 10px 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  align-items: baseline;
}
.spec-grid .spec-row .k {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 11px;
  padding-right: 16px;
}
.spec-grid .spec-row .v {
  font-family: 'Lora', serif;
  color: var(--ink);
  font-weight: 500;
}

/* Related products carousel-like grid */
.related {
  margin: 36px 0;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.related .rhead {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}
.related h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.related .rlink {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--link);
}
.related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.related-grid .rcell {
  padding: 14px;
  border-right: 1px solid var(--hair);
  text-align: center;
  transition: background 0.15s;
}
.related-grid .rcell:last-child { border-right: 0; }
.related-grid .rcell:hover { background: var(--paper); }
.related-grid .rphoto {
  aspect-ratio: 1/1;
  background: var(--paper);
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.related-grid .rphoto img { width: 80%; height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.related-grid h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}

/* === Manual / instruction link (compact) === */
.manual-link {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--hair);
  background: #fff;
  margin: 0 0 18px;
  font-family: 'Source Sans 3', sans-serif;
  transition: border-color 0.15s, background 0.15s;
}
.manual-link:hover { border-color: var(--ink); background: var(--paper); }
.manual-link .ml-icon {
  width: 30px; height: 36px;
  background: var(--ink);
  color: var(--gshock);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.manual-link .ml-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1.2;
  margin-bottom: 2px;
}
.manual-link .ml-meta {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--muted);
}
.manual-link .ml-arrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--link);
  white-space: nowrap;
}

/* === Article (blog post) page === */
.article-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  padding: 32px 0;
}
.article-main { min-width: 0; }
.article-hero { margin-bottom: 28px; }
.article-hero .akicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px; font-weight: 700;
  color: var(--hot);
  margin-bottom: 14px;
}
.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: var(--ink);
}
.article-hero .adeck {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--muted);
  max-width: 820px;
  margin-bottom: 22px;
}
.article-hero .ameta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  padding: 14px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.article-hero .ameta strong { color: var(--ink); font-weight: 700; }
.article-hero .ameta em { font-style: italic; font-family: 'Lora', serif; text-transform: none; letter-spacing: 0.2px; color: var(--muted); }

.article-figure {
  margin: 28px 0;
}
.article-figure img {
  width: 100%; height: auto;
  border: 1px solid var(--hair);
  background: var(--paper);
}
.article-figure figcaption {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--hair);
}
.article-figure figcaption strong { font-style: normal; color: var(--ink); }

.article-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
}
.article-body > p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 72px;
  float: left; line-height: 0.85;
  margin: 6px 10px 0 0;
  color: var(--ink);
}
.article-body p { margin: 0 0 18px; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  margin: 36px 0 14px;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--hair);
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 28px 0 12px;
  color: var(--ink);
}
.article-body ul, .article-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--link); border-bottom: 1px solid var(--rule); }
.article-body a:hover { color: var(--hot); border-bottom-color: var(--hot); }
.article-body strong { color: var(--ink); }
.article-body blockquote {
  margin: 28px 0;
  padding: 18px 26px;
  border-left: 4px solid var(--hot);
  background: var(--paper);
  font-style: italic;
  font-size: 19px;
  color: var(--body);
}

.article-photos-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 22px 0;
}
.article-photos-2 figure { margin: 0; }
.article-photos-2 img {
  width: 100%; height: auto;
  border: 1px solid var(--hair);
  background: var(--paper);
}

/* Inline ad slot in article body */
.ad-slot {
  margin: 32px 0;
  padding: 26px 30px;
  background: var(--paper);
  border-top: 4px double var(--ink);
  border-bottom: 4px double var(--ink);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.ad-slot .ad-mark {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-right: 1px solid var(--rule);
  padding: 0 14px 0 0;
}
.ad-slot .ad-body {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
}
.ad-slot .ad-photo {
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
}
.ad-slot .ad-photo img { width: 80%; height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.ad-slot .ad-text .ad-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.ad-slot .ad-text .ad-deck {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.ad-slot .ad-text .ad-price {
  margin-top: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--ink);
}
.ad-slot .ad-text .ad-price .old { color: var(--muted); text-decoration: line-through; font-weight: 400; font-size: 12px; margin-left: 6px; }
.ad-slot .ad-btn {
  background: var(--ink);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 14px 20px;
  white-space: nowrap;
}
.ad-slot .ad-btn:hover { background: var(--hot); }
.ad-slot .ad-btn strong { color: var(--gshock); }

/* Banner-style ad (full-width centered) */
.ad-banner {
  margin: 32px 0;
  padding: 20px 28px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  border-top: 4px double var(--gshock);
  border-bottom: 4px double var(--gshock);
}
.ad-banner .ad-mark2 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gshock);
  margin-bottom: 8px;
}
.ad-banner .ad-h {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.ad-banner .ad-d {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #d0d0d0;
  font-size: 14px;
  margin-bottom: 14px;
}
.ad-banner .ad-link {
  display: inline-block;
  background: var(--gshock);
  color: var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
}
.ad-banner .ad-link:hover { background: #ffe340; }

/* Article aside (sidebar) */
.article-aside { font-family: 'Source Sans 3', sans-serif; }
.aside-block { margin-bottom: 32px; }
.aside-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}
.aside-block.sticky { position: sticky; top: 16px; }

.aside-ad {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 18px;
  text-align: center;
  position: relative;
}
.aside-ad::before {
  content: 'ПАРТНЁР G-FANS';
  position: absolute;
  top: -8px; left: 12px;
  background: #fff;
  padding: 0 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px; font-weight: 900;
  letter-spacing: 1.8px;
  color: var(--muted);
}
.aside-ad .ad-photo-l {
  aspect-ratio: 4/3;
  background: #fff;
  border: 1px solid var(--hair);
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
}
.aside-ad .ad-photo-l img { width: 75%; height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.aside-ad h5 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
}
.aside-ad p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.45;
}
.aside-ad .a-btn {
  display: block;
  background: var(--ink);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 12px;
}
.aside-ad .a-btn strong { color: var(--gshock); }
.aside-ad .a-btn:hover { background: var(--hot); }

.aside-products { list-style: none; padding: 0; margin: 0; }
.aside-products li {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hair);
}
.aside-products li:last-child { border-bottom: 0; }
.aside-products .ap-photo {
  aspect-ratio: 1/1;
  background: var(--paper);
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
}
.aside-products .ap-photo img { width: 80%; height: 80%; object-fit: contain; }
.aside-products .ap-info .ap-kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--hot);
  font-weight: 700;
  margin-bottom: 2px;
}
.aside-products .ap-info .ap-title {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2px;
  display: block;
}
.aside-products .ap-info .ap-title:hover { color: var(--link); }
.aside-products .ap-info .ap-price {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

/* Prev/next post nav */
.post-prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 32px 0 8px;
  border-top: 4px double var(--ink);
  border-bottom: 4px double var(--ink);
}
.post-prev-next a {
  padding: 18px 22px;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--hair);
  background: #fff;
  transition: background 0.15s;
}
.post-prev-next a:last-child { border-right: 0; text-align: right; }
.post-prev-next a:hover { background: var(--paper); }
.post-prev-next .ppk {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 6px;
}
.post-prev-next .ppt {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.post-prev-next .ppd {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .lead-mod { grid-template-columns: 1fr; }
  .lead-mod .lead-col { border-right: 0; padding-right: 0; margin-right: 0; border-bottom: 1px solid var(--hair); padding-bottom: 24px; }
  .lead-mod .body { column-count: 1; }
  .lead-mod h2 { font-size: 36px; }
  .stories-3 { grid-template-columns: 1fr; }
  .story { border-right: 0; border-bottom: 1px solid var(--hair); padding-right: 0; padding-bottom: 24px; }
  .story:last-child { border-bottom: 0; padding-bottom: 0; }
  .stories-wide { grid-template-columns: 1fr; }
  .stories-wide .feature { border-right: 0; padding-right: 0; }
  .editorial { padding: 28px 22px; }
  .editorial .body { column-count: 1; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .partner { padding: 22px 18px 24px; }
  .partner-head { flex-direction: column; }
  .pcell { padding-right: 12px; }
  .pcell:nth-child(2) { border-right: 0; padding-right: 0; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .acol { padding: 0; border-right: 0; border-bottom: 1px solid var(--hair); padding-bottom: 18px; margin-bottom: 18px; }
  .newsletter { grid-template-columns: 1fr; padding: 24px 22px; }
  .footer .grid { grid-template-columns: 1fr 1fr; }
  .footer .copy { flex-direction: column; gap: 8px; }
  .masthead .logo { font-size: 56px; }
  .masthead .corner-left, .masthead .corner-right { display: none; }
  .util .row { flex-wrap: wrap; gap: 8px; }
  .util .left, .util .right { flex-wrap: wrap; gap: 10px; }

  .cat-head h1 { font-size: 40px; }
  .cat-head .stats { gap: 18px; }
  .cat-layout { grid-template-columns: 1fr; gap: 20px; }
  .cat-side details { padding: 10px 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card:nth-child(4n) { border-right: 1px solid var(--hair); }
  .cat-card:nth-child(2n) { border-right: 0; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-cell { border-right: 0; }
  .cat-toolbar { flex-direction: column; gap: 10px; align-items: flex-start; }

  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .product-info h1 { font-size: 32px; }
  .spec-grid { grid-template-columns: 1fr; gap: 0; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid .rcell:nth-child(2n) { border-right: 0; }

  .article-page { grid-template-columns: 1fr; gap: 32px; }
  .article-hero h1 { font-size: 32px; }
  .article-hero .adeck { font-size: 18px; }
  .article-photos-2 { grid-template-columns: 1fr; }
  .ad-slot { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
  .ad-slot .ad-mark { writing-mode: horizontal-tb; transform: none; border-right: 0; border-bottom: 1px solid var(--rule); padding: 0 0 10px; }
  .ad-slot .ad-body { grid-template-columns: 80px 1fr; }
  .chaster-cta { grid-template-columns: 1fr; }
  .post-prev-next { grid-template-columns: 1fr; }
  .post-prev-next a { border-right: 0; border-bottom: 1px solid var(--hair); }
  .post-prev-next a:last-child { text-align: left; border-bottom: 0; }

  .manual-link { grid-template-columns: 30px 1fr; }
  .manual-link .ml-arrow { display: none; }
}

/* ─── Blog index: rubric tabs + post grid ───────────────────────────────── */
.blog-tabs {
  display: flex; flex-wrap: wrap; gap: 0;
  margin: 24px 0 8px;
  border-bottom: 1px solid var(--hair);
}
.blog-tabs a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted);
  padding: 12px 16px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.blog-tabs a:hover { color: var(--ink); }
.blog-tabs a.active { color: var(--ink); border-bottom-color: var(--ink); }
.blog-tabs a .cnt {
  font-weight: 400;
  color: var(--light);
  margin-left: 6px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 28px 0;
}
.blog-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.blog-card .photo {
  aspect-ratio: 16/10;
  background: var(--paper);
  border: 1px solid var(--hair);
  margin-bottom: 14px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 0.25s ease;
}
.blog-card:hover .photo img { transform: scale(1.04); }
.blog-card .blog-cat {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--hot);
  margin-bottom: 6px;
}
.blog-card .blog-cat .bdate { color: var(--light); font-weight: 400; margin-left: 6px; }
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.2;
}
.blog-card:hover h3 { color: var(--link); }
.blog-card .blog-excerpt {
  font-family: 'Lora', serif;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}

.blog-empty {
  text-align: center;
  padding: 80px 24px;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--muted);
  border: 1px dashed var(--hair);
  margin: 24px 0;
}

.blog-pill {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  background: var(--ink); color: #fff;
  padding: 3px 8px; border-radius: 2px;
}
.blog-pill.review     { background: var(--gshock); }
.blog-pill.guide      { background: var(--link); }
.blog-pill.compare    { background: #5a6a82; }
.blog-pill.howto      { background: #6b8c5e; }
.blog-pill.collab     { background: #b87a3a; }
.blog-pill.sale       { background: var(--hot); }
.blog-pill.news       { background: var(--ink); }
.blog-pill.monthly    { background: #3a5a82; }
.blog-pill.collection { background: #7a5a82; }
.blog-pill.history    { background: #826a3a; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .blog-tabs { overflow-x: auto; flex-wrap: nowrap; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

