/*
Theme Name: TheCarry — The Fitting Room
Description: Leather-goods editorial theme for TheCarry. Same structural grammar as Everyguyed's Fitting Room, distinct materiality: espresso-brown masthead, warm canvas ground, cognac/saddle-tan accent, dashed saddle-stitch seam motif.
Author: TheCarry
Version: 0.1.0
Text Domain: thecarry-fitting-room
*/

:root {
  --ink: #1a1512;
  --ink-2: #241d18;
  --paper: #f0ebe0;
  --paper-2: #e5ddca;
  --tan: #a86a3d;
  --tan-bright: #c98f5c;
  --rule: #ddd4c0;
  --rule-on-ink: #362c22;
  --text-on-paper: #211a14;
  --text-muted: #6b5f4d;
  --text-on-ink: #f0ebe0;
  --text-on-ink-muted: #a89a85;
}

:root[data-theme="dark"] {
  --paper: #211c17;
  --paper-2: #2a231c;
  --ink: #110d0a;
  --ink-2: #161110;
  --rule: #3d332a;
  --rule-on-ink: #332921;
  --text-on-paper: #ece5da;
  --text-muted: #a89a85;
  --tan: #c98f5c;
  --tan-bright: #dba876;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #211c17;
    --paper-2: #2a231c;
    --ink: #110d0a;
    --ink-2: #161110;
    --rule: #3d332a;
    --rule-on-ink: #332921;
    --text-on-paper: #ece5da;
    --text-muted: #a89a85;
    --tan: #c98f5c;
    --tan-bright: #dba876;
  }
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-on-paper);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.serif {
  font-family: Georgia, 'Iowan Old Style', 'Palatino Linotype', Palatino, 'URW Palladio L', serif;
}

.mono {
  font-family: 'SF Mono', 'Menlo', Consolas, monospace;
  font-variant-numeric: tabular-nums;
}

.kicker {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
}

a { color: inherit; text-decoration: none; }

.link-underline {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.35s ease;
}
.link-underline:hover { background-size: 100% 1px; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--tan);
  outline-offset: 3px;
}
/* on ink/dark backgrounds, --tan fails 3:1 non-text contrast -- use the
   brighter variant there instead (utility bar, masthead/nav, dispatch) */
.utility-bar a:focus-visible,
.masthead a:focus-visible, .masthead button:focus-visible,
nav.primary a:focus-visible, nav.primary button:focus-visible,
.dispatch a:focus-visible, .dispatch button:focus-visible, .dispatch input:focus-visible {
  outline-color: var(--tan-bright);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  top: -60px; left: 12px;
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 100;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--tan-bright);
  outline-offset: 2px;
}

/* ---------- utility bar ---------- */
.utility-bar {
  background: var(--ink);
  color: var(--text-on-ink-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rule-on-ink);
}
.utility-bar .socials { display: flex; gap: 18px; }
.utility-bar .socials a { color: var(--text-on-ink-muted); }
.utility-bar .socials a:hover { color: var(--tan-bright); }

/* ---------- masthead ---------- */
.masthead {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 40px 32px 0;
  text-align: center;
}
.masthead .wordmark {
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 0.03em;
  font-weight: 400;
  margin: 0;
}
.masthead .wordmark a { color: inherit; }
.masthead .wordmark .thin { color: var(--tan-bright); font-style: italic; }
.masthead .tagline {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-ink-muted);
  margin: 10px 0 28px;
}

nav.primary {
  padding: 18px 32px;
  border-top: 1px solid var(--rule-on-ink);
}
nav.primary > ul {
  list-style: none; display: flex; gap: 36px; padding: 0; margin: 0;
  flex-wrap: wrap; justify-content: center;
}
nav.primary li { position: relative; }
nav.primary a {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-ink);
  padding: 4px 0;
}
nav.primary a:hover,
nav.primary li:hover > a,
nav.primary li:focus-within > a { color: var(--tan-bright); }

nav.primary .sub-menu {
  list-style: none;
  margin: 0; padding: 14px 0;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--ink);
  border-top: 1px solid var(--tan);
  z-index: 20;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease;
}
nav.primary li:hover > .sub-menu,
nav.primary li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
nav.primary .sub-menu li { padding: 0 22px; }
nav.primary .sub-menu a {
  padding: 9px 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-on-ink-muted);
  white-space: nowrap;
}
nav.primary .sub-menu a:hover { color: var(--tan-bright); }

/* ---------- hamburger toggle (mobile only) ---------- */
.menu-toggle {
  display: none;
  position: absolute;
  top: 34px; right: 24px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  z-index: 60;
}
.menu-toggle .bar {
  display: block; width: 24px; height: 1px; background: var(--text-on-ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.nav-open .menu-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle .bar:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- mobile overlay nav ---------- */
@media (max-width: 860px) {
  .masthead { position: relative; }
  .menu-toggle { display: flex; }

  nav.primary {
    position: fixed; inset: 0;
    border-top: none;
    background: var(--ink);
    padding: 100px 32px 48px;
    overflow-y: auto;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 50;
  }
  body.nav-open nav.primary {
    opacity: 1; visibility: visible; transform: none;
  }

  nav.primary > ul {
    flex-direction: column; align-items: stretch; gap: 0;
  }
  nav.primary > ul > li {
    border-bottom: 1px solid var(--rule-on-ink);
  }
  nav.primary > ul > li > a {
    font-size: 16px;
    padding: 16px 0;
  }

  nav.primary .submenu-toggle {
    position: absolute; top: 4px; right: 0;
    width: 44px; height: 44px;
    background: transparent; border: none; cursor: pointer;
  }
  nav.primary .submenu-toggle span {
    position: absolute; top: 50%; left: 50%;
    width: 9px; height: 9px;
    border-right: 1px solid var(--tan-bright);
    border-bottom: 1px solid var(--tan-bright);
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 0.25s ease;
  }
  li.submenu-open > .submenu-toggle span {
    transform: translate(-50%, -35%) rotate(-135deg);
  }

  nav.primary .sub-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    background: transparent; border-top: none; min-width: 0;
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  li.submenu-open > .sub-menu { max-height: 320px; }
  nav.primary .sub-menu li { padding: 0; }
  nav.primary .sub-menu a { padding: 12px 0 12px 16px; font-size: 13px; }

  @media (prefers-reduced-motion: reduce) {
    nav.primary, nav.primary .sub-menu, .menu-toggle .bar { transition: none; }
  }
}

body.nav-open { overflow: hidden; }

/* ---------- photography ---------- */
.figure {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(168,106,61,0.35), transparent 55%),
    linear-gradient(315deg, var(--ink-2), #33291f 60%, #3d2f1f);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure.no-image::after {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- signature motif: saddle-stitching ----------
   A dashed seam line under the lead story's figure -- the one unique
   structural element for this title, echoing leather-goods stitching. */
.stitch { position: relative; }
.stitch .figure::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background-image: linear-gradient(90deg, var(--tan-bright) 0 6px, transparent 6px 12px);
  background-size: 12px 2px;
  opacity: 0.85;
}

/* ---------- cover / hero ---------- */
.cover {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px;
}
.lead .figure { aspect-ratio: 4 / 3; border-radius: 1px; }
.lead .kicker { display: block; margin: 26px 0 12px; }
.lead h1 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  margin: 0 0 16px;
  text-wrap: balance;
  font-weight: 400;
}
.lead h1 a { color: inherit; }
.lead .dek {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 0 14px;
}
.byline { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.byline b { color: var(--text-on-paper); font-weight: 700; }

.secondary-list { display: flex; flex-direction: column; }
.secondary-list .head {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.secondary-item { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.secondary-item:last-child { border-bottom: none; }
.secondary-item .kicker { font-size: 10px; margin-bottom: 6px; }
.secondary-item h3 { font-size: 18px; line-height: 1.3; font-weight: 400; margin: 0 0 6px; }
.secondary-item h3 a { color: inherit; }
.secondary-item .meta { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ---------- section shell ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 8px 32px 64px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid var(--rule); padding-bottom: 14px; margin-bottom: 34px; }
.section-head h2 { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin: 0; color: var(--text-on-paper); }
.section-head .see-all { font-size: 12px; letter-spacing: 0.04em; color: var(--tan); }

/* ---------- editorial grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.card .figure { aspect-ratio: 5 / 4; margin-bottom: 18px; }
.card .kicker { margin-bottom: 8px; }
.card h3 { font-size: 21px; line-height: 1.28; font-weight: 400; margin: 0 0 8px; }
.card h3 a { color: inherit; }
.card .dek { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0 0 10px; }
.card .meta { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ---------- the edit (shoppable strip) ---------- */
.edit-list { display: flex; flex-direction: column; }
.edit-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.edit-row:first-child { border-top: 1px solid var(--rule); }
.edit-row .figure { width: 96px; height: 96px; border-radius: 1px; }
.edit-row .name { font-size: 17px; margin: 0 0 4px; }
.edit-row .name a { color: inherit; }
.edit-row .brand { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tan); margin: 0 0 6px; }
.edit-row .note { font-size: 13.5px; color: var(--text-muted); max-width: 52ch; margin: 0; }
.edit-row .price-col { text-align: right; white-space: nowrap; }
.edit-row .price { font-size: 15px; display: block; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.edit-row .shop { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); }
.edit-row .read { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

@media (max-width: 860px) {
  .edit-row { grid-template-columns: 72px 1fr; }
  .edit-row .price-col { grid-column: 2; text-align: left; margin-top: 4px; }
  .edit-row .figure { width: 72px; height: 72px; }
}

/* ---------- single post ---------- */
.post-header { max-width: 800px; margin: 0 auto; padding: 56px 32px 30px; text-align: center; }
.post-header .kicker { display: block; margin-bottom: 14px; }
.post-header h1 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.08; font-weight: 400; margin: 0 0 18px; text-wrap: balance; }
.post-header .byline { font-size: 12px; }
.post-hero-figure { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.post-hero-figure .figure { aspect-ratio: 16/9; }
.post-content { max-width: 700px; margin: 0 auto; padding: 44px 32px 64px; font-size: 18px; line-height: 1.75; }
.post-content p { margin: 0 0 24px; }
.post-content img { margin: 8px 0 24px; }
.post-content iframe, .post-content embed, .post-content object, .post-content video {
  max-width: 100%;
}
.post-content .wp-video, .post-content iframe[src*="youtube"], .post-content iframe[src*="vimeo"] {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto !important;
}
.post-content h2, .post-content h3 { font-family: Georgia, 'Iowan Old Style', 'Palatino Linotype', serif; font-weight: 400; }
.post-content a { color: var(--tan); text-decoration: underline; text-underline-offset: 3px; }
.post-tags { max-width: 700px; margin: 0 auto 60px; padding: 0 32px; display: flex; gap: 10px; flex-wrap: wrap; }
.post-tags a { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--rule); padding: 5px 10px; }
.post-tags a:hover { color: var(--tan); border-color: var(--tan); }

/* ---------- author box ---------- */
.author-box {
  max-width: 700px; margin: 0 auto 60px; padding: 32px 32px 0;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 72px 1fr; gap: 22px;
}
.author-box .author-photo img {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
}
.author-box .author-name { font-size: 17px; margin: 0 0 2px; }
.author-box .author-name a { color: inherit; }
.author-box .author-position {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tan);
  margin: 0 0 10px;
}
.author-box .author-bio { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0 0 10px; max-width: 56ch; }
.author-box .author-social { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 8px; display: flex; gap: 16px; }
.author-box .author-social a { color: var(--tan); }
.author-box .author-more { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin: 0; }
.author-box .author-more a { color: var(--tan); }

@media (max-width: 500px) {
  .author-box { grid-template-columns: 1fr; text-align: center; }
  .author-box .author-photo img { margin: 0 auto; }
}

/* ---------- archive ---------- */
.archive-header { max-width: 1180px; margin: 0 auto; padding: 56px 32px 20px; border-bottom: 1px solid var(--rule); }
.archive-header .kicker { display: block; margin-bottom: 10px; }
.archive-header h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 400; margin: 0 0 10px; }
.archive-header .dek { color: var(--text-muted); font-size: 15px; max-width: 60ch; }
.archive-list { max-width: 1180px; margin: 0 auto; padding: 30px 32px 60px; }
.archive-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 26px; align-items: center;
  padding: 24px 0; border-bottom: 1px solid var(--rule);
}
.archive-row .figure { width: 140px; aspect-ratio: 4/3; }
.archive-row h3 { font-size: 20px; font-weight: 400; margin: 0 0 6px; }
.archive-row h3 a { color: inherit; }
.archive-row .dek { font-size: 14px; color: var(--text-muted); margin: 0 0 8px; max-width: 62ch; }
.archive-row .meta { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }
.pagination { max-width: 1180px; margin: 0 auto; padding: 0 32px 60px; display: flex; gap: 18px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.pagination a { color: var(--tan); }

/* ---------- page ---------- */
.page-content { max-width: 700px; margin: 0 auto; padding: 56px 32px 64px; font-size: 17px; line-height: 1.75; }
.page-content h1 { font-family: Georgia, 'Iowan Old Style', 'Palatino Linotype', serif; font-weight: 400; font-size: clamp(30px, 4vw, 42px); margin: 0 0 30px; }

/* ---------- dispatch / newsletter ---------- */
.dispatch { background: var(--ink); color: var(--text-on-ink); text-align: center; padding: 72px 32px; }
.dispatch .kicker { color: var(--tan-bright); }
.dispatch h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 400; margin: 14px 0 12px; }
.dispatch p { color: var(--text-on-ink-muted); font-size: 14.5px; margin: 0 0 30px; }
.dispatch form { display: flex; justify-content: center; gap: 0; max-width: 420px; margin: 0 auto; border-bottom: 1px solid var(--rule-on-ink); }
.dispatch input { flex: 1; background: transparent; border: none; color: var(--text-on-ink); padding: 10px 4px; font-size: 14px; font-family: inherit; }
.dispatch input::placeholder { color: var(--text-on-ink-muted); }
.dispatch input:focus { outline: none; }
.dispatch button { background: transparent; border: none; color: var(--tan-bright); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 10px 4px; cursor: pointer; }

/* ---------- network ---------- */
.network {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding: 30px 32px;
}
.network-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.network-inner .kicker { flex-shrink: 0; }
.network-links {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px 22px;
  margin: 0; padding: 0;
}
.network-links a {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
}
.network-links a:hover { color: var(--tan); }
.network-links .thecarry { display: none; } /* don't link to ourselves in our own footer */
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap;
}

/* ---------- 404 ---------- */
.not-found {
  max-width: 640px; margin: 0 auto; padding: 80px 32px 100px; text-align: center;
}
.not-found .kicker { display: block; margin-bottom: 16px; }
.not-found h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 400; margin: 0 0 16px; }
.not-found .dek { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 0 0 34px; }
.not-found-search {
  display: flex; max-width: 420px; margin: 0 auto 44px;
  border-bottom: 1px solid var(--rule);
}
.not-found-search input {
  flex: 1; background: transparent; border: none; padding: 10px 4px;
  font-size: 15px; font-family: inherit; color: var(--text-on-paper);
}
.not-found-search input::placeholder { color: var(--text-muted); }
.not-found-search input:focus { outline: none; }
.not-found-search button {
  background: transparent; border: none; color: var(--tan);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  padding: 10px 4px; cursor: pointer;
}
.not-found-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.not-found-links a {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--rule); padding: 8px 16px;
}
.not-found-links a:hover { color: var(--tan); border-color: var(--tan); }

/* ---------- footer-extra (optional widget area) ---------- */
.footer-extra {
  border-top: 1px solid var(--rule);
  padding: 30px 32px;
}
.footer-extra-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 30px;
  font-size: 13px; color: var(--text-muted);
}
.footer-extra-widget .kicker { display: block; margin-bottom: 10px; }

/* ---------- footer ---------- */
footer.site-footer {
  border-top: 1px solid var(--rule);
  padding: 30px 32px;
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.06em; color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}
footer.site-footer .fnav { display: flex; gap: 22px; flex-wrap: wrap; }
footer.site-footer .fnav a:hover { color: var(--tan); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .cover { grid-template-columns: 1fr; gap: 34px; }
  .grid-3 { grid-template-columns: 1fr; gap: 40px; }
  .archive-row { grid-template-columns: 96px 1fr; }
  .archive-row .figure { width: 96px; }
  nav.primary ul { gap: 20px 24px; }
  .utility-bar { flex-direction: column; gap: 8px; text-align: center; }
}
