:root {
  --oml-ink: #171816;
  --oml-ink-soft: #3f423e;
  --oml-muted: #73766f;
  --oml-paper: #f5f3ee;
  --oml-paper-deep: #ebe8df;
  --oml-white: #fff;
  --oml-line: rgba(23, 24, 22, 0.14);
  --oml-accent: #b74432;
  --oml-accent-dark: #8f2f22;
  --oml-note: #2cb696;
  --oml-amazon: #ffb000;
  --oml-shell: min(1240px, calc(100vw - 64px));
  --oml-article: min(760px, calc(100vw - 48px));
  --oml-shadow: 0 24px 70px rgba(31, 30, 26, 0.12);
  --oml-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --oml-thumbnail-ratio: 1280 / 670;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--oml-paper);
  color: var(--oml-ink);
  font-family: Inter, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

::selection {
  background: var(--oml-ink);
  color: var(--oml-white);
}

.screen-reader-text,
.oml-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.oml-skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: var(--oml-white);
}

.oml-shell {
  width: var(--oml-shell);
  margin-inline: auto;
}

.oml-narrow {
  width: var(--oml-article);
  margin-inline: auto;
}

.oml-kicker {
  margin: 0 0 18px;
  color: var(--oml-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.19em;
}

.oml-reading-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.oml-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--oml-accent);
}

/* Header */
.oml-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--oml-line);
  background: rgba(245, 243, 238, 0.94);
}

.oml-header__inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
}

.oml-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.oml-brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--oml-ink);
  color: var(--oml-white);
  font-family: Georgia, serif;
  font-size: 23px;
  font-style: italic;
}

.oml-brand__link strong,
.oml-brand__link small {
  display: block;
}

.oml-brand__link strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.oml-brand__link small {
  margin-top: -2px;
  color: var(--oml-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 280px;
  max-height: 56px;
}

.oml-nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  list-style: none;
}

.oml-nav__list a {
  position: relative;
  display: block;
  padding: 35px 0 30px;
  color: var(--oml-ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.oml-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 1px;
  background: var(--oml-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--oml-ease);
}

.oml-nav__list a:hover::after,
.oml-nav__list .current-menu-item a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.oml-menu-button {
  display: none;
}

/* Links and buttons */
.oml-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--oml-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.oml-text-link span {
  color: var(--oml-accent);
  transition: transform 0.25s var(--oml-ease);
}

.oml-text-link:hover span {
  transform: translateX(5px);
}

.oml-text-link--large {
  font-size: 15px;
}

.oml-button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 26px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid var(--oml-ink);
  background: var(--oml-ink);
  color: var(--oml-white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.oml-button:hover {
  background: transparent;
  color: var(--oml-ink);
}

.oml-button--light {
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
}

.oml-button--light:hover {
  background: var(--oml-white);
  color: var(--oml-ink);
}

/* Media */
.oml-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--oml-paper-deep);
}

.oml-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--oml-ease);
}

.oml-media:hover img {
  transform: scale(1.035);
}

[class$="__placeholder"] {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 220px;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(23, 24, 22, 0.1) 50%, transparent 50.5%),
    var(--oml-paper-deep);
  color: rgba(23, 24, 22, 0.26);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-align: center;
}

/* Home */
.oml-home-hero {
  padding: clamp(66px, 8vw, 120px) 0 90px;
}

.oml-home-hero > .oml-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(540px, 1.55fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.oml-home-hero__intro h1 {
  margin: 0 0 32px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(43px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.oml-home-hero__intro h1 em {
  position: relative;
  color: var(--oml-accent);
  font-style: normal;
}

.oml-home-hero__intro h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -3px;
  left: 3px;
  height: 1px;
  background: currentColor;
  content: "";
}

.oml-home-hero__intro > p:not(.oml-kicker) {
  max-width: 34em;
  margin: 0 0 32px;
  color: var(--oml-ink-soft);
  font-size: 15px;
  line-height: 2;
}

.oml-feature {
  position: relative;
}

.oml-feature__media {
  aspect-ratio: var(--oml-thumbnail-ratio);
  box-shadow: var(--oml-shadow);
}

.oml-feature__media img,
.oml-card__media img {
  object-fit: contain;
}

.oml-feature__media:hover img,
.oml-card__media:hover img {
  transform: none;
}

.oml-feature__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 11px;
  background: var(--oml-white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.oml-feature__body {
  position: relative;
  width: calc(100% - 64px);
  margin: 0 0 0 64px;
  padding: 28px 34px 0;
  background: var(--oml-paper);
}

.oml-feature__body h2 {
  margin: 10px 0 15px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.oml-feature__body h2 a {
  text-decoration: none;
}

.oml-feature__body > p {
  margin: 0 0 17px;
  color: var(--oml-muted);
  font-size: 13px;
  line-height: 1.8;
}

.oml-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--oml-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.oml-card__meta > * + *::before {
  margin-right: 12px;
  color: var(--oml-line);
  content: "/";
}

.oml-card__meta a {
  color: var(--oml-accent);
  text-decoration: none;
}

.oml-topic-strip {
  border-top: 1px solid var(--oml-line);
  border-bottom: 1px solid var(--oml-line);
}

.oml-topic-strip > .oml-shell {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 86px;
  align-items: stretch;
}

.oml-topic-strip > .oml-shell > p {
  display: flex;
  margin: 0;
  align-items: center;
  border-right: 1px solid var(--oml-line);
  color: var(--oml-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.oml-topic-strip__links {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.oml-topic-strip__links a {
  display: flex;
  min-width: 144px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 1px solid var(--oml-line);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.oml-topic-strip__links a:hover {
  background: var(--oml-white);
}

.oml-topic-strip__links small {
  color: var(--oml-accent);
  font-size: 9px;
}

.oml-section {
  padding: clamp(84px, 10vw, 144px) 0;
}

.oml-section-heading {
  display: flex;
  margin-bottom: 46px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.oml-section-heading h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.oml-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 32px;
}

.oml-card__media {
  aspect-ratio: var(--oml-thumbnail-ratio);
  margin-bottom: 23px;
}

.oml-card__title {
  margin: 12px 0 13px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.oml-card__title a {
  text-decoration: none;
}

.oml-card__excerpt {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: var(--oml-muted);
  font-size: 13px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.oml-manifesto {
  padding: clamp(84px, 10vw, 140px) 0;
  background: var(--oml-ink);
  color: var(--oml-white);
}

.oml-manifesto__inner {
  display: grid;
  grid-template-columns: 90px minmax(300px, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 90px);
}

.oml-manifesto__number {
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
  font-size: 50px;
  font-style: italic;
}

.oml-manifesto h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.oml-manifesto__copy {
  padding-top: 38px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 2.1;
}

.oml-manifesto__copy p {
  margin: 0 0 21px;
}

.oml-manifesto__copy .oml-text-link {
  margin-top: 12px;
  color: var(--oml-white);
}

.oml-note-banner {
  padding: 90px 0;
  background: var(--oml-paper-deep);
}

.oml-note-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.oml-note-banner h2 {
  margin: 0 0 13px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.oml-note-banner p:not(.oml-kicker) {
  margin: 0;
  color: var(--oml-muted);
  font-size: 14px;
}

/* Archive */
.oml-archive {
  padding: clamp(70px, 9vw, 126px) 0;
}

.oml-archive__header {
  max-width: 760px;
  margin-bottom: 64px;
}

.oml-archive__header h1,
.oml-page__header h1 {
  margin: 0 0 18px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.oml-archive__header > p:not(.oml-kicker),
.oml-archive__description {
  color: var(--oml-muted);
  font-size: 15px;
}

.navigation.pagination {
  margin-top: 84px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  place-items: center;
  border: 1px solid var(--oml-line);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--oml-ink);
  color: var(--oml-white);
}

.oml-search-form {
  display: flex;
  width: min(620px, 100%);
  margin-top: 28px;
}

.oml-search-form label {
  flex: 1;
}

.oml-search-form__field {
  width: 100%;
  height: 56px;
  padding: 0 17px;
  border: 1px solid var(--oml-line);
  border-right: 0;
  border-radius: 0;
  outline: none;
  background: var(--oml-white);
}

.oml-search-form__field:focus {
  border-color: var(--oml-ink);
}

.oml-search-form button {
  width: 90px;
  border: 1px solid var(--oml-ink);
  background: var(--oml-ink);
  color: var(--oml-white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

/* Single article */
.oml-article-header {
  padding: clamp(56px, 7.8vw, 110px) 0 0;
  background: var(--oml-white);
}

.oml-article-shell {
  width: min(1000px, calc(100vw - 64px));
  margin-inline: auto;
}

.oml-breadcrumb {
  display: flex;
  margin-bottom: 42px;
  align-items: center;
  gap: 9px;
  color: var(--oml-muted);
  font-size: 10px;
}

.oml-breadcrumb a {
  text-decoration: none;
}

.oml-article-header__meta {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 17px;
  color: var(--oml-muted);
  font-size: 11px;
  font-weight: 700;
}

.oml-pill {
  padding: 7px 11px;
  border: 1px solid rgba(183, 68, 50, 0.25);
  border-radius: 100px;
  color: var(--oml-accent);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.oml-article-header h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(35px, 5.1vw, 64px);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -0.045em;
}

.oml-article-header__lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--oml-muted);
  font-size: 15px;
  line-height: 2;
}

.oml-article-hero {
  width: min(1180px, calc(100vw - 64px));
  margin: clamp(44px, 6vw, 76px) auto 0;
}

.oml-article-hero img {
  display: block;
  width: 100%;
  max-height: 720px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.oml-article-layout {
  display: grid;
  width: min(1060px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 122px) 0 110px;
  grid-template-columns: 190px minmax(0, 760px);
  gap: clamp(54px, 7vw, 110px);
}

.oml-article-rail__inner {
  position: sticky;
  top: 32px;
}

.oml-article-rail__label {
  margin: 0 0 19px;
  color: var(--oml-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.oml-toc-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--oml-line);
  counter-reset: toc;
  list-style: none;
}

.oml-toc-list:empty {
  display: none;
}

.oml-toc-list li {
  border-bottom: 1px solid var(--oml-line);
  counter-increment: toc;
}

.oml-toc-list a {
  display: grid;
  padding: 13px 0;
  grid-template-columns: 24px 1fr;
  gap: 4px;
  color: var(--oml-muted);
  font-size: 10px;
  line-height: 1.55;
  text-decoration: none;
}

.oml-toc-list a::before {
  color: var(--oml-accent);
  content: counter(toc, decimal-leading-zero);
  font-family: Georgia, serif;
  font-style: italic;
}

.oml-toc-list a:hover {
  color: var(--oml-ink);
}

.oml-share {
  display: flex;
  margin-top: 26px;
  align-items: center;
  gap: 12px;
  color: var(--oml-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.oml-share a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--oml-line);
  color: var(--oml-ink);
  font-size: 10px;
  text-decoration: none;
}

.oml-entry-content {
  color: #323431;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 2.05;
  letter-spacing: 0.015em;
}

.oml-entry-content > *,
.oml-entry-content .oml-editorial > * {
  max-width: 100%;
}

.oml-entry-content p,
.oml-entry-content .oml-editorial > p {
  margin: 1.45em 0;
}

.oml-entry-content h2,
.oml-entry-content .oml-editorial h2 {
  margin: 4.2em 0 1.35em !important;
  padding: 0 0 19px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--oml-ink) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--oml-ink) !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif !important;
  font-size: clamp(27px, 3.4vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.58 !important;
  letter-spacing: -0.025em;
}

.oml-entry-content h2::before,
.oml-entry-content h2::after,
.oml-entry-content .oml-editorial h2::before,
.oml-entry-content .oml-editorial h2::after {
  display: none !important;
}

.oml-entry-content h3,
.oml-entry-content .oml-editorial h3 {
  margin: 3em 0 1.15em !important;
  padding: 0 0 0 17px !important;
  border: 0 !important;
  border-left: 3px solid var(--oml-accent) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--oml-ink) !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif !important;
  font-size: clamp(21px, 2.7vw, 26px) !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
}

.oml-entry-content h3::before,
.oml-entry-content h3::after {
  display: none !important;
}

.oml-entry-content h4 {
  margin: 2.4em 0 0.8em;
  color: var(--oml-ink);
  font-size: 18px;
}

.oml-entry-content a {
  color: var(--oml-accent-dark);
  font-weight: 700;
}

.oml-entry-content ul,
.oml-entry-content ol {
  margin: 2em 0;
  padding: 24px 28px 24px 50px;
  border: 1px solid var(--oml-line);
  background: rgba(255, 255, 255, 0.58);
}

.oml-entry-content li {
  margin: 0.55em 0;
  padding-left: 0.25em;
}

.oml-entry-content li::marker {
  color: var(--oml-accent);
  font-weight: 800;
}

.oml-entry-content blockquote {
  position: relative;
  margin: 2.4em 0;
  padding: 25px 30px 25px 34px;
  border: 0;
  border-left: 3px solid var(--oml-accent);
  background: var(--oml-paper-deep);
  color: var(--oml-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 600;
}

.oml-entry-content blockquote::before,
.oml-entry-content blockquote::after {
  display: none;
}

.oml-entry-content blockquote p {
  margin: 0.6em 0;
}

.oml-entry-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 3em 0;
  border-radius: 0;
}

.oml-entry-content figure {
  margin: 3em 0;
}

.oml-entry-content figure img {
  margin: 0;
}

.oml-entry-content figcaption {
  margin-top: 10px;
  color: var(--oml-muted);
  font-size: 11px;
  text-align: center;
}

.oml-entry-content hr {
  margin: 4em 0;
  border: 0;
  border-top: 1px solid var(--oml-line);
}

.oml-entry-content table {
  width: 100%;
  margin: 2.4em 0;
  border-collapse: collapse;
  font-size: 14px;
}

.oml-entry-content th,
.oml-entry-content td {
  padding: 13px 14px;
  border: 1px solid var(--oml-line);
  text-align: left;
}

.oml-entry-content th {
  background: var(--oml-paper-deep);
}

/* Blog-native editorial modules */
.oml-entry-content .oml-editorial {
  max-width: none;
  margin: 0;
  color: inherit;
  font: inherit;
}

.oml-entry-content .oml-opening {
  margin: 0 0 60px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--oml-line);
  border-top: 4px solid var(--oml-ink);
  background: var(--oml-white);
}

.oml-entry-content .oml-eyebrow,
.oml-entry-content .oml-card-label {
  display: block;
  margin-bottom: 15px;
  color: var(--oml-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.oml-entry-content .oml-lead {
  margin: 0 !important;
  color: var(--oml-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(19px, 2.7vw, 24px);
  font-weight: 700;
  line-height: 1.85;
}

.oml-entry-content .oml-takeaways {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid var(--oml-line);
}

.oml-entry-content .oml-takeaway {
  display: grid;
  padding: 13px 0;
  grid-template-columns: 42px 1fr;
  border-bottom: 1px solid var(--oml-line);
  color: var(--oml-ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.oml-entry-content .oml-takeaway b {
  color: var(--oml-accent);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.oml-entry-content .oml-product-card {
  display: grid;
  margin: 3em 0;
  padding: clamp(24px, 4vw, 34px);
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border: 1px solid var(--oml-line);
  background: var(--oml-white);
}

.oml-entry-content .oml-product-cover img {
  width: 100%;
  max-width: 156px !important;
  margin: 0;
  border: 1px solid rgba(23, 24, 22, 0.1);
  box-shadow: 0 14px 32px rgba(31, 30, 26, 0.16);
}

.oml-entry-content .oml-product-card h3 {
  margin: 0 0 7px !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--oml-ink) !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif !important;
  font-size: 24px !important;
}

.oml-entry-content .oml-product-card p {
  margin: 0 0 15px;
  font-size: 13px;
  line-height: 1.8;
}

.oml-entry-content .oml-product-card .oml-product-meta {
  margin-bottom: 11px;
  color: var(--oml-muted);
  font-size: 11px;
}

.oml-entry-content .oml-product-button {
  display: inline-flex;
  min-height: 51px;
  padding: 0 17px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--oml-amazon);
  color: var(--oml-ink) !important;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.oml-entry-content .oml-product-button:hover {
  filter: brightness(0.96);
  transform: translateY(-2px);
}

.oml-entry-content .oml-note-grid {
  display: grid;
  margin: 2.6em 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.oml-entry-content .oml-note-card {
  display: flex;
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--oml-line);
  background: var(--oml-white);
  color: var(--oml-ink) !important;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.oml-entry-content .oml-note-card:hover {
  border-color: var(--oml-note);
  transform: translateY(-3px);
}

.oml-entry-content .oml-note-card strong {
  display: block;
  margin: 10px 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  line-height: 1.65;
}

.oml-entry-content .oml-note-card small {
  color: var(--oml-muted);
  font-size: 11px;
  line-height: 1.7;
}

.oml-entry-content .oml-note-card b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--oml-note);
  font-size: 11px;
}

.oml-entry-content .oml-related-section {
  margin: clamp(52px, 8vw, 78px) 0 34px;
}

.oml-entry-content .oml-related-section__eyebrow {
  margin: 0 0 9px;
  color: var(--oml-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.oml-entry-content .oml-related-section--note .oml-related-section__eyebrow {
  color: var(--oml-note);
}

.oml-entry-content .oml-related-section__title {
  margin: 0 0 18px;
  color: var(--oml-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 3.3vw, 29px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.oml-entry-content .oml-related-card {
  display: grid;
  min-height: 198px;
  overflow: hidden;
  border: 1px solid var(--oml-line);
  border-radius: 12px;
  background: var(--oml-white);
  box-shadow: 0 12px 34px rgba(24, 24, 20, 0.06);
  color: var(--oml-ink) !important;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 34%);
  text-decoration: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.oml-entry-content .oml-related-card > br,
.oml-entry-content .oml-related-card__body > br {
  display: none;
}

.oml-entry-content .oml-related-card:hover {
  border-color: rgba(183, 68, 50, 0.45);
  box-shadow: 0 16px 42px rgba(24, 24, 20, 0.1);
  transform: translateY(-3px);
}

.oml-entry-content .oml-related-card--note:hover {
  border-color: rgba(44, 182, 150, 0.58);
}

.oml-entry-content .oml-related-card__body {
  display: flex;
  min-width: 0;
  padding: clamp(22px, 4vw, 31px);
  flex-direction: column;
}

.oml-entry-content .oml-related-card__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(183, 68, 50, 0.09);
  color: var(--oml-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.oml-entry-content .oml-related-card--note .oml-related-card__badge {
  background: rgba(44, 182, 150, 0.11);
  color: #218c73;
}

.oml-entry-content .oml-related-card strong {
  display: block;
  margin: 0 0 10px;
  color: var(--oml-ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.55;
}

.oml-entry-content .oml-related-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--oml-muted);
  font-size: 12px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.oml-entry-content .oml-related-card b {
  margin-top: auto;
  padding-top: 16px;
  color: var(--oml-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.oml-entry-content .oml-related-card--note b {
  color: #218c73;
}

.oml-entry-content .oml-related-card__media {
  display: block;
  min-height: 198px;
  overflow: hidden;
  background: var(--oml-paper);
}

.oml-entry-content .oml-related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 198px;
  margin: 0 !important;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.oml-entry-content .oml-related-card:hover .oml-related-card__media img {
  transform: scale(1.035);
}

.oml-entry-content .oml-action-grid {
  display: grid;
  margin: 2.4em 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.oml-entry-content .oml-action {
  padding: 22px 17px;
  border: 1px solid var(--oml-line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--oml-ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.65;
  text-align: center;
}

.oml-entry-content .oml-action b {
  display: block;
  margin-bottom: 7px;
  color: var(--oml-accent);
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.1em;
}

.oml-article-footer {
  margin-top: 90px;
  padding-top: 38px;
  border-top: 1px solid var(--oml-line);
}

.oml-author {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  align-items: start;
}

.oml-author__avatar {
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(31, 30, 26, 0.16);
}

.oml-author__avatar img,
.oml-profile-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22) translate(-4%, 6%);
}

.oml-author h2 {
  margin: 0 0 11px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  line-height: 1.6;
}

.oml-author p:not(.oml-kicker) {
  margin: 0;
  color: var(--oml-muted);
  font-size: 12px;
  line-height: 1.9;
}

.oml-post-taxonomy {
  margin-top: 25px;
  color: var(--oml-muted);
  font-size: 10px;
}

.oml-post-taxonomy > span {
  margin-right: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.oml-post-taxonomy a {
  margin-right: 8px;
}

.oml-related {
  border-top: 1px solid var(--oml-line);
}

/* Pages and errors */
.oml-page {
  padding-bottom: 120px;
}

.oml-page__header {
  margin-bottom: 70px;
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--oml-white);
}

.oml-profile-avatar {
  width: 220px;
  height: 220px;
  margin: -24px auto 54px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(31, 30, 26, 0.16);
}

.oml-profile-avatar img {
  border-radius: 50%;
}

.oml-error-page {
  min-height: 68vh;
  padding: 120px 0;
}

.oml-error-page__inner {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  gap: 70px;
}

.oml-error-page__code {
  margin: 0;
  color: rgba(23, 24, 22, 0.11);
  font-family: Georgia, serif;
  font-size: clamp(120px, 20vw, 260px);
  font-style: italic;
  line-height: 0.8;
}

.oml-error-page h1,
.oml-empty h1 {
  margin: 0 0 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.5;
}

.oml-error-page p:not(.oml-kicker),
.oml-empty > p {
  margin-bottom: 30px;
  color: var(--oml-muted);
}

.oml-empty {
  max-width: 760px;
  padding: 70px 0;
}

/* Footer */
.oml-footer {
  padding: 86px 0 28px;
  background: var(--oml-ink);
  color: var(--oml-white);
}

.oml-footer__lead {
  display: flex;
  padding-bottom: 76px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.oml-footer__statement {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(31px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.oml-footer__bottom {
  display: flex;
  padding-top: 26px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.oml-footer__links {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 24px;
  list-style: none;
}

.oml-footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  text-decoration: none;
}

.oml-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.08em;
}

@media (max-width: 1020px) {
  :root {
    --oml-shell: min(100% - 48px, 1240px);
  }

  .oml-menu-button {
    z-index: 102;
    display: inline-flex;
    padding: 8px 0;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: var(--oml-ink);
    cursor: pointer;
  }

  .oml-menu-button__label {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.16em;
  }

  .oml-menu-button__lines {
    display: grid;
    width: 28px;
    gap: 7px;
  }

  .oml-menu-button__lines i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-open .oml-menu-button__lines i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .oml-menu-button__lines i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .oml-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: grid;
    padding: 100px 24px 40px;
    place-items: center;
    visibility: hidden;
    background: var(--oml-paper);
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s ease;
  }

  .menu-open .oml-nav {
    visibility: visible;
    opacity: 1;
  }

  .oml-nav__list {
    width: min(420px, 100%);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .oml-nav__list a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--oml-line);
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: 22px;
  }

  .oml-home-hero > .oml-shell {
    grid-template-columns: 1fr;
  }

  .oml-home-hero__intro {
    max-width: 720px;
  }

  .oml-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oml-manifesto__inner {
    grid-template-columns: 64px 1fr;
  }

  .oml-manifesto__copy {
    grid-column: 2;
    padding-top: 0;
  }

  .oml-article-layout {
    grid-template-columns: 1fr;
  }

  .oml-article-rail {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --oml-shell: calc(100vw - 32px);
    --oml-article: calc(100vw - 32px);
  }

  .oml-header__inner {
    min-height: 74px;
  }

  .oml-brand__mark {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .oml-brand__link strong {
    font-size: 17px;
  }

  .oml-brand__link small {
    font-size: 8px;
  }

  .oml-menu-button__label {
    display: none;
  }

  .oml-home-hero {
    padding: 58px 0 64px;
  }

  .oml-home-hero > .oml-shell {
    gap: 52px;
  }

  .oml-home-hero__intro h1 {
    font-size: 43px;
    word-break: normal;
  }

  .oml-feature__body {
    width: calc(100% - 18px);
    margin: 0 0 0 18px;
    padding: 22px 0 0 20px;
  }

  .oml-feature__body > p {
    display: none;
  }

  .oml-feature__body h2 {
    font-size: 23px;
  }

  .oml-topic-strip > .oml-shell {
    width: 100%;
    grid-template-columns: 68px 1fr;
  }

  .oml-topic-strip > .oml-shell > p {
    padding-left: 14px;
    font-size: 8px;
  }

  .oml-topic-strip__links a {
    min-width: 126px;
    padding: 0 14px;
  }

  .oml-section {
    padding: 78px 0;
  }

  .oml-section-heading {
    margin-bottom: 34px;
  }

  .oml-section-heading h2 {
    font-size: 36px;
  }

  .oml-card-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .oml-card__title {
    font-size: 22px;
  }

  .oml-manifesto {
    padding: 76px 0;
  }

  .oml-manifesto__inner {
    grid-template-columns: 1fr;
  }

  .oml-manifesto__number {
    display: none;
  }

  .oml-manifesto__copy {
    grid-column: auto;
  }

  .oml-manifesto h2 {
    font-size: 36px;
  }

  .oml-note-banner {
    padding: 72px 0;
  }

  .oml-note-banner__inner,
  .oml-footer__lead,
  .oml-footer__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .oml-note-banner .oml-button {
    width: 100%;
  }

  .oml-article-shell,
  .oml-article-hero,
  .oml-article-layout {
    width: calc(100vw - 32px);
  }

  .oml-article-header {
    padding-top: 42px;
  }

  .oml-breadcrumb {
    margin-bottom: 30px;
  }

  .oml-article-header__meta {
    flex-wrap: wrap;
    gap: 10px 13px;
  }

  .oml-article-header h1 {
    font-size: 34px;
    line-height: 1.55;
  }

  .oml-article-hero {
    margin-top: 38px;
  }

  .oml-article-layout {
    padding: 56px 0 78px;
  }

  .oml-entry-content {
    font-size: 16px;
    line-height: 2;
  }

  .oml-entry-content h2,
  .oml-entry-content .oml-editorial h2 {
    margin-top: 3.6em !important;
    font-size: 27px !important;
  }

  .oml-entry-content h3,
  .oml-entry-content .oml-editorial h3 {
    font-size: 21px !important;
  }

  .oml-entry-content ul,
  .oml-entry-content ol {
    padding: 20px 18px 20px 42px;
  }

  .oml-entry-content img,
  .oml-entry-content figure {
    width: 100%;
    max-width: 100% !important;
    margin-right: 0;
    margin-left: 0;
  }

  .oml-entry-content .oml-opening {
    padding: 24px 20px;
  }

  .oml-entry-content .oml-product-card {
    padding: 21px;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    align-items: start;
  }

  .oml-entry-content .oml-product-cover img {
    width: 92px !important;
    margin: 0 !important;
  }

  .oml-entry-content .oml-product-card h3 {
    font-size: 19px !important;
  }

  .oml-entry-content .oml-product-card p:not(.oml-product-meta) {
    grid-column: 1 / -1;
  }

  .oml-entry-content .oml-product-button {
    width: 100%;
    min-height: 48px;
    padding-inline: 12px;
    gap: 8px;
    font-size: 11px;
  }

  .oml-entry-content .oml-note-grid,
  .oml-entry-content .oml-action-grid {
    grid-template-columns: 1fr;
  }

  .oml-entry-content .oml-note-card {
    min-height: 0;
  }

  .oml-entry-content .oml-related-section {
    margin-top: 46px;
  }

  .oml-entry-content .oml-related-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .oml-entry-content .oml-related-card__media {
    min-height: 0;
    grid-row: 1;
  }

  .oml-entry-content .oml-related-card__media img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .oml-entry-content .oml-related-card__body {
    padding: 21px;
  }

  .oml-author {
    grid-template-columns: 52px 1fr;
    gap: 17px;
  }

  .oml-author__avatar {
    width: 50px;
    height: 50px;
  }

  .oml-profile-avatar,
  .oml-profile-avatar img {
    width: 168px;
    height: 168px;
  }

  .oml-profile-avatar {
    margin-top: -34px;
    margin-bottom: 42px;
  }

  .oml-footer {
    padding-top: 70px;
  }

  .oml-footer__lead {
    align-items: stretch;
  }

  .oml-footer__statement {
    font-size: 33px;
  }

  .oml-footer__links {
    flex-wrap: wrap;
  }

  .oml-error-page {
    padding: 80px 0;
  }

  .oml-error-page__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .oml-error-page__code {
    font-size: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
