/* Tools of Time — main stylesheet.
 * Tokens + base + chrome (header/footer) + homepage sections.
 * Per-template overlays (review/recap/video/conversation) live in their own files.
 */

:root {
  --bg: #fafaf7;
  --paper: #ffffff;
  --ink: #0f0f0e;
  --ink-soft: #3a3a38;
  --muted: #8a8a85;
  --hair: #e5e3dd;
  --hair-strong: #cfccc3;
  --accent: #1a1a18;
  --brass: #8a6a2e;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --serif-italic: "Instrument Serif", Georgia, serif;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --container: 1360px;
  --narrow: 840px;
  --gutter: clamp(20px, 3vw, 48px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─────────── TOP UTILITY BAR ─────────── */
.utility-bar {
  background: var(--ink);
  color: #e8e7e2;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px var(--gutter);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.utility-bar a { opacity: 0.78; transition: opacity 0.2s; }
.utility-bar a:hover { opacity: 1; }
.utility-bar .sep { opacity: 0.3; }

/* Active site indicator — same brass dot pattern the primary nav uses,
 * rendered as a leading marker so the highlighted item reads as "you are
 * here" without changing the row's visual rhythm. */
.utility-bar a.is-current {
  opacity: 1;
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  pointer-events: none;
}
.utility-bar a.is-current::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  flex: 0 0 auto;
}

/* ─────────── MAIN HEADER ─────────── */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.4) blur(8px);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.masthead { grid-column: 2; text-align: center; }
.masthead .wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.masthead .wordmark em {
  font-style: italic;
  font-family: var(--serif-italic);
  font-weight: 400;
}
.masthead .tagline {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  /* Compensate for the trailing letter-spacing on the last glyph so the line
   * sits visually centered under the wordmark instead of pulled left. */
  padding-left: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.header-left, .header-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.header-right { justify-content: flex-end; }
.header-left a, .header-right a { color: var(--ink-soft); transition: color 0.2s; }
.header-left a:hover, .header-right a:hover { color: var(--ink); }
.icon-btn {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color 0.2s;
}
.icon-btn:hover { border-color: var(--hair-strong); }

/* Primary nav */
.primary-nav {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--paper);
}
.primary-nav ul {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.primary-nav li { display: flex; align-items: center; }
.primary-nav a {
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a.active,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { color: var(--ink); }
.primary-nav a.active::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--brass);
  border-radius: 50%;
}

/* ─────────── MEGA MENU (Entries / Shop) ─────────── */
.primary-nav .has-mega { position: static; }
.primary-nav .has-mega > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  vertical-align: middle;
  position: static;
  background: none;
  border-radius: 0;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  opacity: 0;
  visibility: hidden;
  /* Stay interactive during the fade-out so the cursor can travel into the
   * menu without triggering close. visibility delays its transition so the
   * menu remains hoverable until the fade completes. */
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(15, 15, 14, 0.06);
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
}
.primary-nav .has-mega:hover > .mega-menu,
.primary-nav .has-mega:focus-within > .mega-menu,
.primary-nav .has-mega.is-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s ease, visibility 0s linear 0s;
}
/* Pinned (clicked-open) state shows the chevron flipped. */
.primary-nav .has-mega.is-open > a::after {
  transform: translateY(2px) rotate(225deg);
}
/* Bridge the visual gap between the nav and the menu so cursor travel works. */
.mega-menu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.primary-nav .has-mega:hover > .mega-menu,
.primary-nav .has-mega:focus-within > .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-menu__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(28px, 3vw, 48px) var(--gutter);
  display: grid;
  gap: clamp(20px, 2.5vw, 48px);
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: start;
  text-align: left;
  letter-spacing: normal;
}
/* Force columns to respect their fr allocation regardless of image
 * intrinsic width — without min-width:0, large thumbs make columns grow. */
.mega-menu__inner > * { min-width: 0; }
.mega-menu__inner img { max-width: 100%; height: auto; }
/* Long unbroken strings (URLs, hyphenated model numbers) should wrap so
 * neighboring columns don't overlap. */
.mega-menu__inner span,
.mega-menu__inner p,
.mega-menu__inner h4 {
  overflow-wrap: anywhere;
  word-break: normal;
}
/* The outer .primary-nav a sets white-space: nowrap so the top-level menu
 * items don't wrap. That cascades into every link inside the mega menu and
 * defeats overflow-wrap on long titles. Re-enable wrapping inside the menu. */
.primary-nav .mega-menu,
.primary-nav .mega-menu * {
  white-space: normal;
}
/* Belt-and-braces: ensure the mega menu always reads left-justified, no
 * matter what text-align the parent header/li sets. */
.primary-nav .mega-menu,
.primary-nav .mega-menu__inner,
.primary-nav .mega-menu__col,
.primary-nav .mega-menu__col * {
  text-align: left;
}
.mega-menu--shop .mega-menu__inner,
.mega-menu--videos .mega-menu__inner {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}
.mega-menu--recaps .mega-menu__inner {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.2vw, 36px);
}

/* Recap card columns — image on top, eyebrow + title + event date below. */
.mega-menu__col--recap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  text-transform: none;
  letter-spacing: normal;
  text-align: left;
  min-width: 0;
  overflow: hidden;
}
.mega-menu__col--recap::after { display: none; }
.mega-menu__recap-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hair);
}
.mega-menu__recap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mega-menu__col--recap:hover .mega-menu__recap-img img { transform: scale(1.03); }
.mega-menu__recap-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  width: 100%;
  max-width: 100%;
}
.mega-menu__col--recap:hover .mega-menu__recap-title { color: var(--brass); }
.mega-menu__recap-when {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* Footer "All Recaps →" link sits below the 4-column grid. */
.mega-menu--recaps .mega-menu__footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(20px, 2.5vw, 36px);
  display: flex;
  justify-content: flex-end;
}
.mega-menu--entries .mega-menu__inner {
  /* Smaller quick-link column, wider article-list column, two featured blocks. */
  grid-template-columns: 0.85fr 1.5fr 1fr 1fr;
  gap: clamp(20px, 2vw, 36px);
}
@media (max-width: 1100px) {
  .mega-menu--entries .mega-menu__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.mega-menu__title {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 500;
}

/* Column 1 — text link list */
.mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-menu__list a {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-weight: 380;
  text-transform: none;
  line-height: 1.3;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.mega-menu__list a::after { display: none; }
.mega-menu__list a:hover { border-bottom-color: var(--ink); }

/* Column 2 — articles with thumbnails */
.mega-menu__articles {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mega-menu__article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  text-transform: none;
  letter-spacing: normal;
}
.mega-menu__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hair);
}
.mega-menu__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-menu__article-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-menu__cat {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.mega-menu__article-title {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 380;
}
.mega-menu__article:hover .mega-menu__article-title { color: var(--brass); }
.mega-menu__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  margin-top: 6px;
  transition: gap 0.2s;
  text-transform: uppercase;
}
.mega-menu__all::after { display: none; }
.mega-menu__all:hover { gap: 12px; }

/* Columns 3 & 4 — image-led features */
.mega-menu__feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-transform: none;
  letter-spacing: normal;
}
.mega-menu__feature::after { display: none; }
.mega-menu__feature-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hair);
}
.mega-menu__feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mega-menu__feature:hover .mega-menu__feature-img img { transform: scale(1.03); }
.mega-menu__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.3s, background 0.3s;
}
.mega-menu__feature:hover .mega-menu__play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.mega-menu__feature-title {
  font-family: var(--serif);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 400;
}

/* Shop mega menu */
.mega-menu__col--shop-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-transform: none;
  letter-spacing: normal;
}
.mega-menu__shop-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: none;
}
.mega-menu__shop-mark em {
  font-family: var(--serif-italic);
  font-style: italic;
}
.mega-menu__shop-intro {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
  font-style: italic;
}
/* Column 2 — Latest Entries vertical list (small square thumb + title). */
.primary-nav .mega-menu__col--articles { display: flex; flex-direction: column; gap: 12px; }
.primary-nav .mega-menu__articles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* Stretch each li to full column width so the thumbnail always anchors at
   * the column's left edge regardless of content length. */
  justify-content: flex-start;
  align-items: stretch;
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
}
.primary-nav .mega-menu__articles li {
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
}
.primary-nav .mega-menu__article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: center;
  text-transform: none;
  letter-spacing: normal;
  white-space: normal;
}
.primary-nav .mega-menu__article::after { display: none; }
.mega-menu__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hair);
}
.mega-menu__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mega-menu__article-body {
  /* Inline bold-prefix + regular title, like the Hodinkee reference. */
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.mega-menu__article-kind {
  font-weight: 600;
  color: var(--ink);
  margin-right: 4px;
}
.mega-menu__article-title {
  font-weight: 400;
  color: var(--ink);
}
.mega-menu__article:hover .mega-menu__article-kind,
.mega-menu__article:hover .mega-menu__article-title { color: var(--brass); }

/* Columns 3 & 4 — featured blocks (image-led). */
.mega-menu__col--entry-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-transform: none;
  letter-spacing: normal;
  text-align: left;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
}
.mega-menu__col--entry-feature::after { display: none; }
.mega-menu__col--entry-feature .mega-menu__title {
  /* Same uppercase letterspaced section heading as the other column titles. */
  margin: 0;
}
.mega-menu__entry-feature-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hair);
}
.mega-menu__entry-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mega-menu__col--entry-feature:hover .mega-menu__entry-feature-img img { transform: scale(1.03); }
.mega-menu__entry-feature-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  width: 100%;
  max-width: 100%;
  font-family: var(--serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
.mega-menu__col--entry-feature:hover .mega-menu__entry-feature-title { color: var(--brass); }

/* Quick text-link list inside the Entries column 1.
 * Selectors are scoped under .primary-nav so they beat the .primary-nav ul
 * uppercase/letterspacing cascade. */
.primary-nav .mega-menu__col--entries-quick { display: flex; flex-direction: column; gap: 14px; }
.primary-nav .mega-menu__quick-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* The outer .primary-nav ul sets justify-content + align-items: center
   * for the row layout. Reset both for the column flex inside the menu. */
  justify-content: flex-start;
  align-items: flex-start;
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
}
.primary-nav .mega-menu__quick-links li { padding: 0; margin: 0; display: block; }
.primary-nav .mega-menu__quick-links a {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 380;
  letter-spacing: -0.005em;
  text-transform: none;
  border-bottom: 1px solid transparent;
  padding: 0 0 1px;
  width: fit-content;
  white-space: normal;
  transition: border-color 0.2s, color 0.2s;
}
.primary-nav .mega-menu__quick-links a:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}
.primary-nav .mega-menu__quick-links a::after { display: none; }

.mega-menu__shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  width: fit-content;
  transition: gap 0.2s;
}
.mega-menu__shop-link::after { display: none; }
.mega-menu__shop-link:hover { gap: 12px; }

.mega-menu__col--shop-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-transform: none;
  letter-spacing: normal;
}
.mega-menu__col--shop-card::after { display: none; }
.mega-menu__shop-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hair);
}
.mega-menu__shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mega-menu__col--shop-card:hover .mega-menu__shop-img img { transform: scale(1.03); }
.mega-menu__shop-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.mega-menu__shop-title {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .mega-menu__inner,
  .mega-menu--shop .mega-menu__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .mega-menu__inner,
  .mega-menu--shop .mega-menu__inner { grid-template-columns: 1fr; }
}

/* ─────────── HERO ─────────── */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 64px) var(--gutter) clamp(48px, 5vw, 88px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: stretch;
}
.hero-feature {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.hero-feature:hover img { transform: scale(1.03); }
.hero-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--brass); }
.hero-title {
  font-family: var(--serif);
  font-weight: 370;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-title em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 400;
}
.hero-dek {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 48ch;
}
.hero-byline {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-byline .dot { width: 3px; height: 3px; background: var(--hair-strong); border-radius: 50%; }
.hero-byline strong { color: var(--ink-soft); font-weight: 500; }
.read-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  width: fit-content;
  transition: gap 0.25s;
}
.read-cta:hover { gap: 16px; }

/* ─────────── SECTION FRAME ─────────── */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 6vw, 112px) var(--gutter);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(32px, 3.5vw, 56px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
}
.section-head .kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
}
.section-head h2 em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 400;
}
.view-all {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-soft);
  transition: color 0.2s, border-color 0.2s;
}
.view-all:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ─────────── LATEST GRID ─────────── */
.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 44px) clamp(20px, 2vw, 36px);
}
.post-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.post-card .thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--hair);
  position: relative;
}
.post-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.post-card:hover .thumb img { transform: scale(1.04); }
.post-card .cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
.post-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 48;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.post-card h3 em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 400;
}
.post-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: -4px;
  flex-wrap: wrap;
}
.post-meta .dot { width: 3px; height: 3px; background: var(--hair-strong); border-radius: 50%; }

/* ─────────── SERIES RAIL ─────────── */
.series-rail {
  background: var(--ink);
  color: #f0efea;
  padding: clamp(72px, 7vw, 128px) 0;
  margin-top: clamp(32px, 4vw, 64px);
}
.series-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.series-head {
  text-align: center;
  margin-bottom: clamp(40px, 4vw, 72px);
}
.series-head .kicker {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(240, 239, 234, 0.55);
  margin-bottom: 18px;
  display: block;
}
.series-head h2 {
  font-family: var(--serif);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 20ch;
}
.series-head h2 em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 400;
}
.series-head p {
  margin: 20px auto 0;
  max-width: 52ch;
  color: rgba(240, 239, 234, 0.7);
  font-size: 15px;
  line-height: 1.6;
}
.series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.2vw, 36px);
  max-width: 1180px;
  margin: 0 auto;
}
.series-card { display: flex; flex-direction: column; gap: 16px; }
.series-card .thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #222;
}
.series-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.4s;
}
.series-card:hover .thumb img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.series-card .name {
  font-family: var(--serif);
  font-weight: 380;
  font-variation-settings: "opsz" 48;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.series-card .name em { font-family: var(--serif-italic); font-style: italic; font-weight: 400; }
.series-card .desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(240, 239, 234, 0.65);
}
.series-card .count {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 239, 234, 0.5);
  margin-top: -4px;
}

/* ─────────── EDITORIAL FEATURE (magazine spread) ─────────── */
.editorial {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 7vw, 128px) var(--gutter);
}
.editorial-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: center;
}
.editorial-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.editorial-figure img { width: 100%; height: 100%; object-fit: cover; }
.editorial-figure figcaption {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 15, 14, 0.55);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}
.editorial-copy .kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.editorial-copy .kicker::before { content: ""; width: 24px; height: 1px; background: var(--brass); }
.editorial-copy h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.editorial-copy h2 em { font-family: var(--serif-italic); font-style: italic; font-weight: 400; }
.editorial-copy .body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 52ch;
}
.editorial-copy .byline {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.editorial-copy .byline strong { color: var(--ink-soft); font-weight: 500; }

/* ─────────── GALLERY STRIP ─────────── */
.gallery-section {
  background: var(--paper);
  padding: clamp(72px, 7vw, 128px) 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.gallery-head {
  max-width: var(--container);
  margin: 0 auto clamp(32px, 3vw, 56px);
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.gallery-head .kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}
.gallery-head h2 {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
  max-width: 18ch;
}
.gallery-head h2 em { font-family: var(--serif-italic); font-style: italic; font-weight: 400; }
.gallery-head .caption {
  max-width: 36ch;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.gallery-strip {
  display: flex;
  gap: clamp(8px, 1vw, 16px);
  overflow-x: auto;
  padding: 0 var(--gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-track { background: transparent; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--hair-strong); border-radius: 3px; }
.gallery-strip figure {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.gallery-strip figure img {
  height: clamp(280px, 34vw, 520px);
  width: auto;
  display: block;
}
.gallery-strip figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* ─────────── VIDEO / CW TV ─────────── */
.cwtv {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 7vw, 128px) var(--gutter);
}
.cwtv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
}
.cwtv-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.cwtv-video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.cwtv-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.cwtv-video:hover .cwtv-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.cwtv-play::before {
  content: "";
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--ink);
  margin-left: 4px;
}
.cwtv-copy .kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cwtv-copy .kicker::before { content: ""; width: 24px; height: 1px; background: var(--brass); }
.cwtv-copy h2 {
  font-family: var(--serif);
  font-weight: 340;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.cwtv-copy h2 em { font-family: var(--serif-italic); font-style: italic; font-weight: 400; }
.cwtv-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 44ch;
}
.cwtv-copy .subscribe {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 22px;
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s;
}
.cwtv-copy .subscribe:hover { background: var(--ink); color: #fff; }

/* ─────────── HISTORICA (vintage & heritage) ─────────── */
.section--historica {
  max-width: none;
  background: #f3f0e6;
  margin: clamp(32px, 4vw, 64px) 0 0;
  padding: clamp(72px, 7vw, 128px) var(--gutter);
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
}
.section--historica > .section-head,
.section--historica > .latest-grid {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.section--historica .section-head { border-bottom-color: var(--hair-strong); }
.section--historica .section-head .kicker { color: var(--brass); }
.section--historica .section-head h2 em {
  font-family: var(--serif-italic);
  font-style: italic;
}
.section--historica .post-card .cat { color: var(--brass); }

/* ─────────── MASONRY / IN THE FIELD ─────────── */
.field-section {
  background: #f3f1ea;
  padding: clamp(72px, 7vw, 128px) 0;
}
.field-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.field-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(32px, 3vw, 56px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair-strong);
}
.field-head .kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}
.field-head h2 {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
}
.field-head h2 em { font-family: var(--serif-italic); font-style: italic; font-weight: 400; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 1.8vw, 28px);
}
.field-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field-item.big { grid-column: span 7; }
.field-item.tall { grid-column: span 5; }
.field-item.third { grid-column: span 4; }
.field-item .thumb { overflow: hidden; background: var(--hair); }
.field-item.big .thumb { aspect-ratio: 4 / 3; }
.field-item.tall .thumb { aspect-ratio: 3 / 4; }
.field-item.third .thumb { aspect-ratio: 1 / 1; }
.field-item .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.field-item:hover .thumb img { transform: scale(1.04); }
.field-item .cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
.field-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 48;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.field-item h3 em { font-family: var(--serif-italic); font-style: italic; font-weight: 400; }
.field-item .meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────── DEFAULT PAGE TEMPLATE (page.php) ─────────── */
.page-article__head {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 64px) var(--gutter) clamp(32px, 3vw, 48px);
  text-align: center;
}
.page-article__title {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(40px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  max-width: 24ch;
  margin: 0 auto;
}
.page-article__title em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 400;
}
.page-article__dek {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 24px auto 0;
}
.page-article__hero {
  max-width: var(--container);
  margin: clamp(20px, 2.5vw, 40px) auto 0;
  padding: 0 var(--gutter);
}
.page-article__hero img {
  display: block;
  width: 100%;
  height: auto;
}
.page-article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 80px) var(--gutter);
  font-family: var(--serif);
}
.page-article__body p {
  font-weight: 380;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 24px;
}
.page-article__body h2 {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: "opsz" 96;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: clamp(40px, 4vw, 64px) 0 clamp(12px, 1.5vw, 20px);
}
.page-article__body h3 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: clamp(32px, 3vw, 48px) 0 clamp(10px, 1.2vw, 14px);
}
.page-article__body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 20px);
  margin: clamp(24px, 2.5vw, 36px) 0 8px;
}
.page-article__body h2 em,
.page-article__body h3 em,
.page-article__body h4 em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 400;
}
.page-article__body ul,
.page-article__body ol {
  font-weight: 380;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 24px;
  padding-left: 28px;
}
.page-article__body li { margin-bottom: 8px; }
.page-article__body blockquote {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin: clamp(32px, 3vw, 48px) 0;
  padding-left: 24px;
  border-left: 2px solid var(--brass);
}
.page-article__body a {
  color: inherit;
  border-bottom: 1px solid var(--hair-strong);
  transition: color 0.2s, border-color 0.2s;
}
.page-article__body a:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}
.page-article__body figure { margin: clamp(24px, 2.5vw, 40px) 0; }
.page-article__body figcaption {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}
.page-article__body strong { font-weight: 600; }

/* ──────────────────────────────────────────────────────────────────────
 * Post body containers — every block stays inside the prose column.
 *
 * Killing the historical "alignwide / alignfull break out to container"
 * behavior so core/gallery, core/image, core/columns, and CW gallery all
 * line up with the body text. Editors who deliberately tagged a block as
 * alignfull in the past will see it constrained without anyone having to
 * re-save the post.
 *
 * If you ever want a single hero block to break out again, scope a new
 * rule to a specific class (e.g. `.has-hero-breakout`) rather than
 * resurrecting the .alignfull behavior site-wide.
 * ────────────────────────────────────────────────────────────────────── */
.review-intro .alignwide,
.review-intro .alignfull,
.recap-intro  .alignwide,
.recap-intro  .alignfull,
.page-article__body .alignwide,
.page-article__body .alignfull {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  transform: none;
  position: static;
}

/* ─────────── AUTHOR LINK (in bylines) ─────────── */
.author-link {
  color: inherit;
  border-bottom: 1px solid var(--hair-strong);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.author-link:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

/* ─────────── AUTHOR BIO CARD (single post bottom) ─────────── */
.author-card {
  max-width: var(--narrow);
  margin: clamp(48px, 5vw, 80px) auto;
  padding: 0 var(--gutter);
}
.author-card__inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  padding: clamp(28px, 3vw, 36px) 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  align-items: start;
}
.author-card__photo {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hair);
}
.author-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.author-card__photo:hover img { transform: scale(1.04); }
.author-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.author-card__kicker {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.author-card__name {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0;
}
.author-card__name a { color: var(--ink); }
.author-card__name a:hover { color: var(--brass); }
.author-card__location {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2px 0 6px;
}
.author-card__photog {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 4px 0 0;
}
.author-card__photog strong {
  color: var(--ink-soft);
  font-weight: 500;
}
.author-card__bio {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 6px 0 12px;
  max-width: 56ch;
}
.author-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.author-card__links a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hair-strong);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.author-card__links a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.author-card__more { color: var(--brass); border-bottom-color: var(--brass); }
.author-card__more:hover { color: var(--ink); border-bottom-color: var(--ink); }

@media (max-width: 560px) {
  .author-card__inner { grid-template-columns: 88px 1fr; gap: 16px; }
}

/* ─────────── AUTHOR PROFILE PAGE (/authors/<slug>) ─────────── */
.author-profile__head {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 5vw, 88px) var(--gutter) clamp(40px, 4vw, 64px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 3vw, 56px);
  align-items: start;
}
.author-profile__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hair);
}
.author-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-profile__intro { display: flex; flex-direction: column; gap: 12px; }
.author-profile__kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.author-profile__name {
  font-family: var(--serif);
  font-weight: 340;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
}
.author-profile__name em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 400;
}
.author-profile__location {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.author-profile__bio {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 56ch;
  margin: 12px 0 4px;
}
.author-profile__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
}
.author-profile__links a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.author-profile__links a:hover { color: var(--brass); border-bottom-color: var(--brass); }

.author-profile__posts {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 5vw, 80px) var(--gutter);
  border-top: 1px solid var(--hair);
}

@media (max-width: 720px) {
  .author-profile__head {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .author-profile__photo { max-width: 220px; }
}

/* ─────────── PAGINATION (archives + search) ─────────── */
.pagination {
  margin: clamp(56px, 6vw, 96px) auto 0;
  padding: 32px var(--gutter) 0;
  border-top: 1px solid var(--hair);
  text-align: center;
}
.pagination .nav-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(6px, 0.8vw, 12px);
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pagination .page-numbers:hover {
  color: var(--ink);
  border-color: var(--hair-strong);
}
.pagination .page-numbers.current {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.pagination .page-numbers.dots {
  border-color: transparent;
  color: var(--muted);
  pointer-events: none;
}
.pagination .prev,
.pagination .next {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 8px;
  border: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  margin: 0 8px;
  transition: color 0.2s, border-color 0.2s;
}
.pagination .prev:hover,
.pagination .next:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
  background: transparent;
}

/* ─────────── SHOP CROSS-SELL ─────────── */
.shop-strip {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 7vw, 128px) var(--gutter);
}
.shop-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(32px, 3vw, 56px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
}
.shop-head .kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}
.shop-head h2 {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
}
.shop-head h2 em { font-family: var(--serif-italic); font-style: italic; font-weight: 400; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-card .thumb {
  aspect-ratio: 1 / 1;
  background: #f3f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card .thumb img {
  width: 85%; height: 85%; object-fit: contain;
  transition: transform 0.5s;
}
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .brand {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-card .name {
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.product-card .price {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ─────────── SHOPIFY PRODUCT BLOCK ─────────── */
.cw-shopify-product {
  margin: clamp(32px, 4.5vw, 56px) auto;
  max-width: 720px;
  /* No box — sits on the page background with elegant top + bottom rules. */
  background: transparent;
  border: none;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: clamp(20px, 2.5vw, 32px) 0;
  font-family: var(--sans);
}
.cw-shopify-product.alignwide  { max-width: 960px; }
.cw-shopify-product.alignfull  { max-width: none; }
.cw-shopify-product__link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  text-decoration: none;
  color: inherit;
  gap: clamp(28px, 5vw, 56px);
  width: 100%;
  box-sizing: border-box;
}
.cw-shopify-product__link::after { display: none !important; }
.cw-shopify-product__media {
  flex: 0 0 200px !important;
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
  height: 200px !important;
  background: #f5f4ee;
  overflow: hidden !important;
  position: relative;
  box-sizing: border-box;
}
.cw-shopify-product__media img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cw-shopify-product__link:hover .cw-shopify-product__media img { transform: scale(1.03); }
.cw-shopify-product__body {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  padding: 0;
  display: flex !important;
  flex-direction: column !important;
  gap: 0;
  align-items: flex-start !important;
  justify-content: center;
  text-align: left !important;
  box-sizing: border-box;
}
.cw-shopify-product__body > * + * { margin-top: 10px; }
.cw-shopify-product__vendor + .cw-shopify-product__title { margin-top: 4px; }
.cw-shopify-product__vendor {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.cw-shopify-product__title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 360;
  font-variation-settings: "opsz" 96, "SOFT" 40;
  line-height: 1.2;
  letter-spacing: -0.014em;
  margin: 0;
  color: var(--ink);
  overflow-wrap: break-word;
  hyphens: auto;
}
.cw-shopify-product__pricing {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  font-weight: 400;
}
.cw-shopify-product__compare-price {
  color: var(--ink-soft);
  text-decoration: line-through;
  font-size: 14px;
}
.cw-shopify-product__price { font-weight: 500; }
.cw-shopify-product__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px !important;
  padding: 9px 18px;
  background: var(--ink);
  color: #f0efea;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s, gap 0.2s;
  align-self: flex-start;
}
.cw-shopify-product__link:hover .cw-shopify-product__cta {
  background: #2a2725;
  gap: 14px;
}
.cw-shopify-product.is-sold-out .cw-shopify-product__cta {
  background: var(--hair-strong);
  color: var(--ink-soft);
  cursor: not-allowed;
}
.cw-shopify-product.is-sold-out .cw-shopify-product__media img { opacity: 0.65; }

/* Mobile: stack image on top, body below. */
@media (max-width: 540px) {
  .cw-shopify-product__link {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }
  .cw-shopify-product__media {
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
  }
  .cw-shopify-product__body { padding: 0; }
}

.cw-shopify-product--empty,
.cw-shopify-product--error {
  padding: 28px;
  text-align: center;
  color: var(--ink-soft);
  border-style: dashed;
  background: transparent;
}
.cw-shopify-product--error a {
  color: var(--brass);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Editor placeholder + preview wrapping */
.wp-block-cw-shopify-product .cw-shopify-product { margin-top: 0; margin-bottom: 0; }

/* ─────────── CONTACT PAGE ─────────── */
.contact-page {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) var(--gutter) clamp(56px, 6vw, 96px);
}
.contact-page__header {
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.contact-page__kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.contact-page__title {
  font-family: var(--serif);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
}
.contact-page__title em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 360;
}
.contact-page__intro {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}
.contact-page__intro p { margin: 0; }

.contact-page__flash {
  margin: 0 0 28px;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: baseline;
}
.contact-page__flash strong { font-weight: 600; }
.contact-page__flash--success {
  background: rgba(138, 106, 46, 0.08);
  border: 1px solid rgba(138, 106, 46, 0.4);
  color: var(--ink);
}
.contact-page__flash--error {
  background: rgba(180, 60, 60, 0.06);
  border: 1px solid rgba(180, 60, 60, 0.45);
  color: var(--ink);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form__label em {
  color: var(--brass);
  font-style: normal;
  margin-left: 2px;
}
.contact-form__field input,
.contact-form__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair-strong);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-bottom-color: var(--ink);
}
.contact-form__field textarea { min-height: 160px; }

.contact-form__submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--ink);
  color: #f0efea;
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, gap 0.2s;
}
.contact-form__submit:hover { background: #2a2725; gap: 16px; }
.contact-form__direct {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
}
.contact-form__direct a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.contact-form__hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* The Subscribe header link anchors to #subscribe in the footer; offset
 * the scroll so the band lands below the sticky header instead of behind it. */
.newsletter { scroll-margin-top: 96px; }

/* ─────────── JOURNAL ARCHIVE PAGE ─────────── */
.journal-page {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) var(--gutter) clamp(56px, 6vw, 96px);
}
.journal-page__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.journal-page__kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.journal-page__title {
  font-family: var(--serif);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
}
.journal-page__title em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 360;
}
.journal-page__intro {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 auto 32px;
}
.journal-page__page-intro {
  max-width: 640px;
  margin: 0 auto clamp(32px, 4vw, 56px);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.journal-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  margin-top: 8px;
}
.journal-page__filter {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px 10px;
  border: 1px solid var(--hair-strong);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.journal-page__filter:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.journal-page__filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Search-this-page */
.journal-page__search {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 520px;
  margin: 28px auto 28px;
  padding: 0;
  border: 1px solid var(--hair-strong);
  border-radius: 0;
  transition: border-color 0.2s;
  background: transparent;
}
.journal-page__search:focus-within {
  border-color: var(--ink);
}
.journal-page__search-icon {
  margin: 0 12px 0 14px;
  color: var(--ink-soft);
  flex: 0 0 auto;
  align-self: center;
}
.journal-page__search input[type="search"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 12px 8px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.journal-page__search input[type="search"]::placeholder { color: var(--ink-soft); }
.journal-page__search-submit {
  background: var(--ink);
  color: #f0efea;
  border: none;
  border-radius: 0;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  flex: 0 0 auto;
}
.journal-page__search-submit:hover { background: #2a2725; }

.journal-page__result-meta {
  margin: 22px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.journal-page__result-meta em {
  font-family: var(--serif-italic);
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0;
  font-size: 15px;
}
.journal-page__clear-search {
  margin-left: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.journal-page__clear-search:hover { color: var(--ink); }
.journal-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(48px, 5vw, 80px);
}
@media (max-width: 960px) {
  .journal-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .journal-page__grid { grid-template-columns: 1fr; gap: 28px; }
}
.journal-page__empty {
  text-align: center;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
  padding: 40px 0;
}
.journal-page__pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.journal-page__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--hair-strong);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.journal-page__pagination .page-numbers:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.journal-page__pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ─────────── SEARCH OVERLAY ─────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 14, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}
.search-overlay__close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: transparent;
  border: 1px solid rgba(240, 239, 234, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0efea;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.search-overlay__close:hover {
  border-color: rgba(240, 239, 234, 0.6);
  background: rgba(240, 239, 234, 0.08);
}
.search-overlay__inner {
  max-width: 760px;
  margin: 14vh auto 0;
  padding: 0 var(--gutter);
  text-align: left;
}
.search-overlay__kicker {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 239, 234, 0.5);
  margin-bottom: 18px;
}
.search-overlay__form {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(240, 239, 234, 0.4);
  transition: border-color 0.2s;
}
.search-overlay__form:focus-within {
  border-bottom-color: #f0efea;
}
.search-overlay__form input[type="search"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: #f0efea;
  font-family: var(--serif);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  padding: 16px 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.search-overlay__form input[type="search"]::-webkit-search-cancel-button { display: none; }
.search-overlay__form input[type="search"]::placeholder {
  color: rgba(240, 239, 234, 0.32);
  font-style: italic;
}
.search-overlay__submit {
  background: transparent;
  border: none;
  color: #f0efea;
  cursor: pointer;
  padding: 12px;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.search-overlay__submit:hover {
  opacity: 1;
  transform: translateX(2px);
}
.search-overlay__hint {
  margin: 22px 0 0;
  color: rgba(240, 239, 234, 0.45);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.search-overlay__hint kbd {
  display: inline-block;
  padding: 2px 8px;
  margin: 0 2px;
  border: 1px solid rgba(240, 239, 234, 0.25);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
}
body.search-open { overflow: hidden; }

/* ─────────── SEARCH RESULTS PAGE ─────────── */
.search-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) var(--gutter) clamp(56px, 6vw, 96px);
}
.search-page__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.search-page__kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.search-page__title {
  font-family: var(--serif);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.search-page__title em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 360;
  color: var(--brass);
}
.search-page__count {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}
.search-page__form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  padding: 6px 0;
  border-bottom: 1px solid var(--hair-strong);
  transition: border-color 0.2s;
}
.search-page__form:focus-within { border-bottom-color: var(--ink); }
.search-page__form input[type="search"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.search-page__form input[type="search"]::placeholder { color: var(--ink-soft); }
.search-page__form button {
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.search-page__form button:hover { opacity: 1; transform: translateX(2px); }

.search-page__results {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
}
.search-result {
  border-bottom: 1px solid var(--hair);
}
.search-result:last-child { border-bottom: none; }
.search-result__link {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(24px, 3vw, 40px) 0;
  text-decoration: none;
  color: inherit;
}
.search-result__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hair);
  border-radius: 2px;
}
.search-result__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.search-result__link:hover .search-result__thumb img { transform: scale(1.04); }
.search-result__body { min-width: 0; }
.search-result__kind {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.search-result__title {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: "opsz" 96, "SOFT" 40;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  margin: 0 0 12px;
  color: var(--ink);
  transition: color 0.2s;
}
.search-result__link:hover .search-result__title { color: var(--brass); }
.search-result__excerpt {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 12px;
}
.search-result__meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.search-page__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--hair-strong);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin: 0 4px;
}
.search-page__pagination .page-numbers:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.search-page__pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.search-page__empty {
  text-align: center;
  margin: 32px auto 0;
  max-width: 520px;
  color: var(--ink-soft);
}
.search-page__empty-prompt {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.search-page__suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}
.search-page__suggestions li { padding: 6px 0; border-bottom: 1px solid var(--hair); }
.search-page__suggestions li:last-child { border-bottom: none; }
.search-page__suggestions a { color: var(--brass); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

@media (max-width: 640px) {
  .search-result__link { grid-template-columns: 110px 1fr; gap: 16px; }
  .search-result__title { font-size: 18px; }
  .search-result__excerpt { font-size: 14px; }
}

/* ─────────── NEWSLETTER ─────────── */
.newsletter {
  background: var(--ink);
  color: #f0efea;
  padding: clamp(72px, 7vw, 128px) var(--gutter);
  text-align: center;
}
.newsletter-inner { max-width: 640px; margin: 0 auto; }
.newsletter .kicker {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(240, 239, 234, 0.55);
  margin-bottom: 18px;
  display: block;
}
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 320;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.newsletter h2 em { font-family: var(--serif-italic); font-style: italic; font-weight: 400; }
.newsletter p {
  color: rgba(240, 239, 234, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 48ch;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(240, 239, 234, 0.3);
  transition: border-color 0.3s;
}
.newsletter-form:focus-within { border-bottom-color: #f0efea; }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: #f0efea;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(240, 239, 234, 0.4); }
.newsletter-form button {
  background: transparent;
  border: none;
  color: #f0efea;
  padding: 14px 0 14px 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
}
/* The form is now: [select] [email] [submit], all sharing one underline. */
.newsletter-form {
  flex-direction: column;
  border-bottom: none;
  align-items: stretch;
}
.newsletter-form__row {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid rgba(240, 239, 234, 0.3);
  transition: border-color 0.3s;
}
.newsletter-form__row:focus-within { border-bottom-color: #f0efea; }

/* Channel select — quietly tucked to the left of the email input. Reads as
 * a subtle option, not a primary control. No divider, soft color, sentence
 * case so it doesn't compete with the SUBSCRIBE button visually. */
.newsletter-form__select {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 12px;
  min-width: 0;
}
.newsletter-form__select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  color: rgba(240, 239, 234, 0.45);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 400;
  padding: 14px 16px 14px 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  line-height: 1.2;
  /* Faint custom caret in the same soft tone as the text. */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5'><path d='M1 1l3.5 3 3.5-3' stroke='rgba(240,239,234,0.5)' stroke-width='1' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  width: auto;
  max-width: 140px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.2s;
}
.newsletter-form__select:hover select,
.newsletter-form__select select:focus {
  color: rgba(240, 239, 234, 0.85);
}
/* Open dropdown options use a readable background since the page is dark. */
.newsletter-form__select select option {
  background: var(--ink);
  color: #f0efea;
}

/* Flash messages above the form */
.newsletter-flash {
  max-width: 520px;
  margin: 0 auto 24px;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
}
.newsletter-flash--success {
  background: rgba(240, 239, 234, 0.08);
  border: 1px solid rgba(240, 239, 234, 0.25);
  color: #f0efea;
}
.newsletter-flash--error {
  background: rgba(220, 70, 70, 0.12);
  border: 1px solid rgba(220, 70, 70, 0.45);
  color: #ffd4d4;
}

/* Honeypot — visually hidden but still in the DOM */
.newsletter-form__hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 640px) {
  /* Stack on phones — the select goes above the email row, full-width. */
  .newsletter-form__row { flex-wrap: wrap; }
  .newsletter-form__select {
    flex: 1 0 100%;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .newsletter-form__select select {
    max-width: none;
    width: 100%;
    background-position: right 0 center;
    padding-right: 18px;
  }
}

/* ─────────── FOOTER ─────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--hair);
  padding: clamp(56px, 5vw, 88px) var(--gutter) 32px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hair);
}
.footer-brand .wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-brand .wordmark em {
  font-family: var(--serif-italic);
  font-style: italic;
  font-weight: 400;
}
.footer-brand p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  max-width: 34ch;
}
.footer-brand__about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-soft);
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.footer-brand__about:hover {
  gap: 14px;
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 13px;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-col li.is-sub > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.footer-col li.is-sub > a::before {
  content: "•";
  display: inline-block;
  color: var(--brass);
  opacity: 0.7;
  font-size: 10px;
  line-height: 1;
}
.footer-col li.is-sub > a:hover { color: var(--ink-soft); }
.footer-col li.is-sub > a:hover::before { opacity: 1; }
.footer-crest {
  padding: clamp(40px, 4vw, 64px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--hair);
}
.footer-crest .label {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-crest .cw-mark {
  height: 34px;
  width: auto;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.footer-crest a:hover .cw-mark { opacity: 1; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--ink-soft); }

/* Legal menu (Privacy / Terms / Instagram / YouTube) — render horizontally
 * regardless of whether it's the wp_nav_menu <ul> output or the inline
 * fallback list. */
.footer-legal ul,
.footer-legal .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-legal li {
  margin: 0;
  list-style: none;
}
.footer-legal a {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--ink-soft); }

/* ─────────── ICONS ─────────── */
.icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 960px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-left { display: none; }
  .masthead { text-align: left; grid-column: 2; }
  .primary-nav ul { overflow-x: auto; justify-content: flex-start; }
  .hero-grid { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: 1fr; }
  .cwtv-grid { grid-template-columns: 1fr; }
  .field-item.big, .field-item.tall, .field-item.third { grid-column: span 6; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .utility-bar { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .latest-grid { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .field-item.big, .field-item.tall, .field-item.third { grid-column: span 1; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
